[AGS] Prepare bar

This commit is contained in:
2025-04-19 15:07:22 +02:00
parent 196d553627
commit a9c7b7d7ee
25 changed files with 1172 additions and 107 deletions

View File

@@ -0,0 +1,37 @@
@import "colors";
.toggle-row {
background-color: $bg;
border-radius: 12px;
margin: 6px 0;
overflow: hidden;
border: 1px solid $border;
button {
padding: 10px 16px;
font-size: 14px;
transition: background 0.2s ease;
border: none;
background: transparent;
&:hover {
background-color: $hover;
}
}
.toggle {
flex: 1;
background-color: transparent;
text-align: left;
&.active {
background-color: $accent;
color: white;
}
}
.arrow {
width: 40px;
background-color: transparent;
text-align: center;
}
}