1
0
Fork 0

Fix CSS order

This commit is contained in:
Moritz Ruth 2021-08-08 19:52:55 +02:00
parent afb165e37e
commit c3767c594d
No known key found for this signature in database
GPG key ID: AFD57E23E753841B
2 changed files with 34 additions and 36 deletions

View file

@ -16,14 +16,6 @@
</template>
<style>
body {
font-size: 20px;
}
::selection {
@apply bg-blue-900 bg-opacity-80 text-white;
}
._content {
min-height: calc(100vh - 80px);
}

View file

@ -1,5 +1,12 @@
@layer base {
.prose {
body {
font-size: 20px;
}
::selection {
@apply bg-blue-900 bg-opacity-80 text-white;
}
.prose {
:where(h1) {
@apply font-bold text-3xl sm:text-5xl text-gray-900;
}
@ -23,9 +30,9 @@
:where(address, p, ol, ul) {
@apply not-italic text-lg max-w-240 mt-5;
}
}
}
.asterisk-list > li {
.asterisk-list > li {
&:not(:last-child) {
margin-bottom: 5px;
}
@ -35,5 +42,4 @@
content: "*";
margin-right: 5px;
}
}
}