38 lines
757 B
SCSS
38 lines
757 B
SCSS
/*.tablet-toggle {
|
|
background-color: $bg;
|
|
color: $fg;
|
|
font-family: Product Sans;
|
|
border-radius: 30px;
|
|
border: 5px solid $contrastbg;
|
|
padding: 10px 18px;
|
|
}*/
|
|
|
|
.toggle-off {
|
|
background-color: $bg;
|
|
transition: border-color 0.5s ease-in-out;
|
|
color: #CBA6F7;
|
|
border-radius: 80px;
|
|
border: 3px solid $contrastbg;
|
|
padding: 0px 6px 0px 12px;
|
|
/* Add any other styles for the "off" state */
|
|
}
|
|
|
|
.toggle-on {
|
|
background-color: $bg;
|
|
transition: border-color 0.5s ease-in-out;
|
|
color: #CBA6F7;
|
|
border-radius: 80px;
|
|
border: 3px solid #CBA6F7;
|
|
padding: 0px 6px 0px 12px;
|
|
/* Add any other styles for the "on" state */
|
|
}
|
|
|
|
.notif-panel {
|
|
min-width: 110px;
|
|
min-height: 40px;
|
|
font-size: 22px;
|
|
}
|
|
|
|
.tablet-toggle {
|
|
font-size: 26px;
|
|
}
|