fix list style
This commit is contained in:
parent
4cf56096e1
commit
71e7a31841
1 changed files with 24 additions and 2 deletions
|
@ -80,9 +80,31 @@
|
|||
}
|
||||
|
||||
a {
|
||||
font-size: 1em;
|
||||
color: var(--btn-external-color);
|
||||
font-size: 1em;
|
||||
color: var(--btn-external-color);
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
/* Lists */
|
||||
ul,
|
||||
ol {
|
||||
margin-bottom: 2em;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: initial;
|
||||
}
|
||||
|
||||
li {
|
||||
margin-left: 2em;
|
||||
p {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
ol > li,
|
||||
ul > li {
|
||||
list-style-position: outside;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue