Better now
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 1m12s

This commit is contained in:
2026-03-12 00:51:08 +01:00
parent 4c561738c4
commit 81d72aba1c
3 changed files with 16 additions and 4 deletions

View File

@@ -28,9 +28,19 @@ ul {
list-style: none; /* Remove default bullets */
}
ul > li {padding: 10px 25px} /* Stretching li elements a little so it looks prettier */
li {
position: relative;
}
li::before {
content: "";
width: 16px;
height: 16px;
background-color: #d050ff;
width: 8px;
height: 8px;
background-color: var(--color-text);
position: absolute;
top: 16px;
left: 4px;
}
a {
color: var(--color-link);
}