mirror of
https://github.com/eugeny/tabby
synced 2026-05-05 00:41:08 +00:00
24 lines
336 B
SCSS
24 lines
336 B
SCSS
:host {
|
|
display: flex;
|
|
}
|
|
|
|
button {
|
|
flex: none;
|
|
border: none;
|
|
box-shadow: none;
|
|
border-radius: 0;
|
|
font-size: 8px;
|
|
width: 40px;
|
|
padding: 0;
|
|
line-height: 0;
|
|
text-align: center;
|
|
|
|
&:not(:hover):not(:active) {
|
|
background: transparent;
|
|
}
|
|
|
|
&:focus {
|
|
box-shadow: none;
|
|
}
|
|
}
|