mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-26 06:19:53 +00:00
26 lines
445 B
SCSS
26 lines
445 B
SCSS
:host {
|
|
flex: none;
|
|
$toggle-size: 18px;
|
|
$height: 30px;
|
|
$padding: 2px;
|
|
display: inline-flex;
|
|
overflow: visible;
|
|
border-radius: 3px;
|
|
line-height: $height;
|
|
height: $height;
|
|
transition: 0.25s opacity;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
padding-right: 10px;
|
|
padding-left: 10px;
|
|
margin-left: -10px;
|
|
|
|
&.disabled {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
* {
|
|
cursor: pointer;
|
|
}
|
|
}
|