mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-18 02:19:57 +00:00
25 lines
365 B
SCSS
25 lines
365 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;
|
|
align-items: center;
|
|
|
|
&:not(:hover):not(:active) {
|
|
background: transparent;
|
|
}
|
|
|
|
&:focus {
|
|
box-shadow: none;
|
|
}
|
|
}
|