Fix list rendering on "about" page
This commit is contained in:
parent
66b1d4f799
commit
d74cb71438
3 changed files with 13 additions and 4 deletions
15
src/App.vue
15
src/App.vue
|
@ -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,
|
||||
|
|
|
@ -49,7 +49,6 @@ h1 {
|
|||
|
||||
.static-text {
|
||||
font-size: 24px;
|
||||
line-height: 1.75;
|
||||
}
|
||||
|
||||
@media screen and (max-width: $screen-breakpoint-small) {
|
||||
|
|
|
@ -33,6 +33,5 @@ const { instance } = $(useInstanceInfo())
|
|||
.content .description {
|
||||
font-size: 18px;
|
||||
font-weight: lighter;
|
||||
line-height: 2;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue