Edit biography page list style

This commit is contained in:
Paul Nicoué 2022-06-13 15:45:00 +02:00
parent 361fd8fd3f
commit b138a0df21
4 changed files with 20 additions and 8 deletions

View file

@ -308,7 +308,7 @@ footer {
}
.header-bar__nav-item--active {
list-style: disc;
list-style: disc outside;
a {
color: var(--white);
@ -613,16 +613,28 @@ footer {
}
ul {
list-style: disc inside;
line-height: var(--text-line-height);
+ ul,
+ p {
margin: 1rem 0 0 0;
}
li + li {
margin: 0.5rem 0 0 0;
}
li {
position: relative;
padding: 0 0 0 1rem;
}
li + li {
margin: 0.5rem 0 0 0;
}
li:before {
content: '';
position: absolute;
top: 0;
left: 0;
}
}
}