rework sidemenu + fix no categories / links

This commit is contained in:
Sonny
2022-04-28 18:22:39 +02:00
parent 1ab51979fe
commit 1a5fb2eee4
14 changed files with 309 additions and 853 deletions

View File

@@ -1,3 +1,12 @@
.no-link,
.no-category {
display: flex;
flex: 1;
align-items: center;
justify-content: center;
flex-direction: column;
}
.links-wrapper {
height: 100%;
padding: 10px;
@@ -24,6 +33,7 @@
& .links .link {
user-select: none;
cursor: pointer;
animation: fadein 0.3s both;
& > a {
height: fit-content;
@@ -70,3 +80,15 @@
}
}
}
@keyframes fadein {
0% {
transform: translateX(-15px);
opacity: 0;
}
100% {
transform: translateX(0);
opacity: 1;
}
}