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 {
|
.static-text {
|
||||||
a {
|
line-height: 2;
|
||||||
|
|
||||||
|
p a {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
text-decoration-skip-ink: none;
|
text-decoration-skip-ink: none;
|
||||||
|
|
||||||
|
@ -57,6 +59,15 @@ a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ol,
|
||||||
|
ul {
|
||||||
|
padding-left: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
list-style-type: disc;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
input,
|
input,
|
||||||
|
|
|
@ -49,7 +49,6 @@ h1 {
|
||||||
|
|
||||||
.static-text {
|
.static-text {
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
line-height: 1.75;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: $screen-breakpoint-small) {
|
@media screen and (max-width: $screen-breakpoint-small) {
|
||||||
|
|
|
@ -33,6 +33,5 @@ const { instance } = $(useInstanceInfo())
|
||||||
.content .description {
|
.content .description {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: lighter;
|
font-weight: lighter;
|
||||||
line-height: 2;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue