Limit line length on smaller screens
This commit is contained in:
parent
d8ec72e3a7
commit
db85fe78e8
|
@ -1,11 +1,18 @@
|
|||
.entry-content {
|
||||
@apply bg-red-500;
|
||||
@apply font-serif text-lg leading-loose;
|
||||
|
||||
@screen md {
|
||||
@apply text-xl;
|
||||
}
|
||||
|
||||
> * {
|
||||
@apply max-w-2xl;
|
||||
|
||||
@screen 2xl {
|
||||
@apply max-w-full;
|
||||
}
|
||||
}
|
||||
|
||||
h2 {
|
||||
@apply text-2xl font-bold mt-8 -mb-5;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue