This commit is contained in:
Bastian Wagner
2026-03-05 10:34:10 +01:00
parent 020216026e
commit f88fe93182
3 changed files with 29 additions and 8 deletions

View File

@@ -16,6 +16,10 @@ mat-drawer-container {
cursor: pointer;
}
mat-toolbar {
border-bottom: 1px solid #ccc;
}
mat-drawer, mat-toolbar {
background-color: #fff;
border-radius: 0;
@@ -34,4 +38,20 @@ mat-drawer {
mat-toolbar {
gap: 12px;
}
.nav-button {
display: flex;
padding: 12px 12px;
margin: 4px;
border-radius: 8px;
cursor: pointer;
align-items: center;
gap: 12px;
transition: background-color 0.2s ease-in-out;
&:hover {
background-color: rgb(246, 246, 247);
}
}