feat: add styles for distinguishable big links
Some checks are pending
Build and Test / build-and-test (macos-latest) (push) Waiting to run
Build and Test / build-and-test (ubuntu-latest) (push) Waiting to run
Build and Test / build-and-test (windows-latest) (push) Waiting to run
Build and Test / publish-tag (push) Waiting to run
Docker build & push image / build (push) Waiting to run

This commit is contained in:
Samuel 2025-04-07 17:07:21 +02:00
parent 9db66d500e
commit 4ccace15bf
No known key found for this signature in database
27 changed files with 5324 additions and 7 deletions

View file

@ -1,3 +1,33 @@
@use "./base.scss";
// put your custom CSS here!
// mark next item with small border part
/* .folder-outer .content li { */
/* position: relative;
&:after {
content: "";
position: absolute;
background: var(--darkgray);
height: 1px;
width: 1rem;
bottom: 0;
left: 0;
} */
/* } */
// create a gap so that long links become distinguishable
.folder-outer .content li {
display: flex;
flex-direction: column;
row-gap: 0.5rem;
// make all of the space clickable, not only the text
li {
display: block;
a {
display: block;
}
}
}