Move headline styles to tailwind base
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Basti 2021-02-19 15:11:53 +01:00
parent f9726ad9be
commit 682c78c7c3
Signed by untrusted user: basti
GPG Key ID: 9F88009D31D99C72
2 changed files with 10 additions and 16 deletions

View File

@ -18,7 +18,6 @@
} }
h1 { h1 {
font-size: 1.8rem;
color: #fff; color: #fff;
span.project-name { span.project-name {
@ -28,8 +27,7 @@
span.icon { span.icon {
svg { svg {
display: inline-block; display: inline-block;
height: 1.8rem; height: 1.875rem;
margin-top: -0.1rem;
vertical-align: top; vertical-align: top;
width: auto; width: auto;
} }
@ -85,18 +83,6 @@ main {
margin: 3rem auto; margin: 3rem auto;
} }
h2, h3 {
margin-bottom: 1.5em;
}
h2 {
font-size: 1.5rem;
}
h3 {
font-size: 1.25rem;
}
p { p {
line-height: 1.5rem; line-height: 1.5rem;
margin-bottom: 1rem; margin-bottom: 1rem;

View File

@ -8,6 +8,14 @@
} }
h1 { h1 {
@apply uppercase; @apply text-3xl uppercase;
}
h2 {
@apply text-2xl mb-8;
}
h3 {
@apply text-xl mb-6;
} }
} }