38 lines
601 B
SCSS
38 lines
601 B
SCSS
@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;
|
|
}
|
|
}
|