Limit line length on smaller screens

This commit is contained in:
Oliver Davies 2019-04-16 21:23:13 +01:00
parent d8ec72e3a7
commit db85fe78e8

View file

@ -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;
}