Fix list rendering on "about" page

This commit is contained in:
silverpill 2022-09-18 23:09:46 +00:00
parent 66b1d4f799
commit d74cb71438
3 changed files with 13 additions and 4 deletions

View file

@ -48,8 +48,10 @@ a {
}
}
.static-text p {
a {
.static-text {
line-height: 2;
p a {
text-decoration: underline;
text-decoration-skip-ink: none;
@ -57,6 +59,15 @@ a {
text-decoration: none;
}
}
ol,
ul {
padding-left: 1em;
}
ul {
list-style-type: disc;
}
}
input,

View file

@ -49,7 +49,6 @@ h1 {
.static-text {
font-size: 24px;
line-height: 1.75;
}
@media screen and (max-width: $screen-breakpoint-small) {

View file

@ -33,6 +33,5 @@ const { instance } = $(useInstanceInfo())
.content .description {
font-size: 18px;
font-weight: lighter;
line-height: 2;
}
</style>