Sidebar styling

In general styling capabilities with scsss
This commit is contained in:
2026-05-02 12:27:27 +02:00
parent fa77190555
commit 9eb843a786
9 changed files with 94 additions and 1357 deletions
+22
View File
@@ -0,0 +1,22 @@
@use "variables";
@use "mixins";
@use "utilities";
@use "components/sidebar";
@use "components/tickets";
body {
background: variables.$color-bg;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
color: #111827;
margin: 0;
}
.admin { display: flex; }
.content { flex: 1; padding: variables.$spacing-md; }
@media (max-width: 768px) {
.sidebar { position: fixed; left: -100%; transition: left .2s; }
.sidebar.open { left: 0; }
.content { margin-left: 0; }
}