Copied Ninos styles with copilot
This commit is contained in:
2026-05-11 13:15:03 +02:00
parent d9ef5746a2
commit 10de47b911
12 changed files with 923 additions and 138 deletions
+11 -9
View File
@@ -17,16 +17,17 @@
text-decoration: none;
display: block;
padding: 8px 12px;
border-radius: 4px;
&:hover { background: rgba(255,255,255,0.04); }
border-radius: $border-radius;
transition: background 0.2s ease-in-out;
&:hover { background: rgba(255,255,255,0.1); }
}
.menu-toggle { background: transparent; border: none; text-align: left; width: 100%; cursor: pointer; }
.submenu {
margin-left: 8px;
background: rgba(255,255,255,0.02);
border-radius: 4px;
background: rgba(255,255,255,0.05);
border-radius: $border-radius;
padding: 6px;
li { padding: 4px 0; }
}
@@ -38,16 +39,17 @@
}
.logout-button {
background: rgba(255,255,255,0.1);
background: $color-logout;
color: #fff;
border: 1px solid rgba(255,255,255,0.2);
border: none;
padding: 8px 12px;
border-radius: 4px;
border-radius: $border-radius-lg;
width: 100%;
cursor: pointer;
text-align: left;
&:hover { background: rgba(255,255,255,0.15); }
&:active { background: rgba(255,255,255,0.2); }
font-weight: bold;
transition: background 0.2s ease-in-out;
&:hover { background: $color-logout-hover; transform: scale(1.02); }
}
&.user { width: 220px; background: darken($color-sidebar, 6%); }