mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-21 11:59:53 +00:00
15 lines
239 B
SCSS
15 lines
239 B
SCSS
:host {
|
|
display: inline-block;
|
|
padding: 5px;
|
|
|
|
transition: 0.125s all;
|
|
|
|
&:hover:not(.active) {
|
|
background: rgba(255, 255, 255, .033);
|
|
}
|
|
|
|
&:active:not(.active) {
|
|
background: rgba(0, 0, 0, .1);
|
|
}
|
|
}
|