list styles

This commit is contained in:
Niccolo Borgioli 2024-12-01 17:20:40 +01:00
parent 65eb4bb712
commit b5af0cae15
3 changed files with 9 additions and 0 deletions

2
.gitignore vendored
View File

@ -22,3 +22,5 @@ pnpm-debug.log*
# jetbrains setting folder
.idea/
output
export.xml

View File

@ -36,6 +36,8 @@ const links: { label: string; url: string; icon: astroHTML.JSX.Element }[] = [
display: flex;
flex-direction: column;
gap: 1rem;
list-style: none;
margin: 0;
}
a {

View File

@ -94,3 +94,8 @@ pre {
margin: 1rem 0;
display: block;
}
ul {
list-style: square;
margin-left: 1rem;
}