added base dashboard

This commit is contained in:
Bojan Kucera 2025-06-02 20:12:20 -04:00
parent 94e3c96ef6
commit 114c280734
29 changed files with 1022 additions and 950 deletions

View file

@ -0,0 +1,20 @@
/* Sidebar specific styles */
.nav-button {
width: 100%;
text-align: left;
justify-content: flex-start;
padding: 0.75rem 1rem;
border-radius: 0.375rem;
margin-bottom: 0.25rem;
background-color: transparent;
transition: background-color 0.15s ease-in-out;
}
.nav-button:hover {
background-color: #f3f4f6;
}
.nav-button.bg-blue-50 {
background-color: #eff6ff !important;
color: #1d4ed8 !important;
}