Files
tabby/tabby-core/src/components/toggle.component.scss
T
EugeneandGitHub 1e5cfd1d4b bootstrap 5 WIP (#7891)
New standard theme that follows your chosen terminal colors, Bootstrap 5 & Angular 15 upgrade
2023-02-26 20:42:31 +01:00

32 lines
486 B
SCSS

:host {
flex: none;
$toggle-size: 18px;
$height: 30px;
$padding: 2px;
display: inline-flex;
border-radius: 3px;
line-height: $height;
height: $height;
transition: 0.25s opacity;
align-items: center;
padding-right: 10px;
padding-left: 10px;
margin-left: -10px;
.form-check {
margin: 0;
}
&.disabled {
opacity: 0.5;
}
* {
cursor: pointer;
}
label {
display: none;
}
}