blob: cccbf30fcba21620cc6de6d3a65acab9027381e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
@import "../globalCssVariables";
.toggle-title{
display: flex;
align-items: center;
color: $light-color;
text-transform: uppercase;
flex-direction: row;
justify-content: space-around;
padding: 5px;
.toggle-option{
width: 100px;
text-align: center;
}
}
.toggle-bar{
height: 50px;
background-color: $alt-accent;
border-radius: 10px;
padding: 5px;
display: flex;
align-items: center;
.toggle-button{
width: 275px;
height: 100%;
border-radius: 10px;
background-color: $light-color;
}
}
|