feat: implement collapsible sidebar

chore: basic sidebar toggle button
chore: update compiled css
This commit is contained in:
Xin
2023-08-20 00:42:46 +01:00
parent 1c7962494d
commit 15d3a4da5e
7 changed files with 163 additions and 32 deletions

View File

@ -7,3 +7,15 @@
backface-visibility: hidden;
}
}
.sidebar-container {
li > div {
@apply h-0;
}
li.open > div {
@apply h-auto;
}
li.open > a > span > svg > path {
@apply rotate-90;
}
}