-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
46 lines (39 loc) · 792 Bytes
/
input.css
File metadata and controls
46 lines (39 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
@import "tailwindcss";
@plugin "@tailwindcss/typography";
/* Custom typography overrides */
@layer base {
.prose blockquote {
font-style: normal;
}
.prose blockquote p {
font-style: normal;
}
/* Make the first h1 in the document bigger */
.prose h1:first-of-type {
font-size: 3.5rem;
line-height: 1.1;
}
/* Page break for print */
.prose hr {
page-break-after: always;
break-after: page;
opacity: 0;
}
}
@utility prose {
blockquote {
/* Disable adding quote marks to block-quotes: https://github.com/tailwindlabs/tailwindcss-typography/issues/66 */
p {
&:first-of-type::before,
&:last-of-type::after {
content: none;
}
}
}
code {
&::before,
&::after {
content: none;
}
}
}