Migrate sidebar to use Tailwind/Shadcn

This commit is contained in:
2026-01-21 11:36:41 +00:00
parent 4fc155af0a
commit 56a3105913
19 changed files with 2076 additions and 187 deletions

View File

@@ -7,44 +7,6 @@ body {
font-family: "Fira Sans", sans-serif, monospace !important;
}
.sidebar {
height: 100vh;
transition: width 0.2s ease;
overflow: hidden;
p, button, span {
/* Needed to prevent line break during sidebar toggle animation */
overflow: hidden;
white-space: nowrap
}
}
.sidebar-open {
width: 14rem;
}
.sidebar-closed {
width: 4rem;
}
.sidebar-listItem {
height: 2.25rem;
border-radius: 0.25rem;
padding: 0.375rem 0.75rem;
&:hover {
background-color: #1b1e21;
}
}
.noteEditor {
background-color: #1b1e21;
}
.noteEditor-container {
background-color: #1b1e21;
}
@theme inline {
--radius-sm: calc(var(--radius) - 4px);
--radius-md: calc(var(--radius) - 2px);