mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-16 17:40:00 +00:00
24 lines
402 B
SCSS
24 lines
402 B
SCSS
:host {
|
|
display: block;
|
|
position: absolute;
|
|
z-index: 5;
|
|
transition: 0.125s background;
|
|
background: rgba(0, 0, 0, .2);
|
|
|
|
&.v {
|
|
cursor: ns-resize;
|
|
height: 10px;
|
|
margin-top: -5px;
|
|
}
|
|
|
|
&.h {
|
|
cursor: ew-resize;
|
|
width: 10px;
|
|
margin-left: -5px;
|
|
}
|
|
|
|
&:hover, &.active {
|
|
background: rgba(255, 255, 255, .125);
|
|
}
|
|
}
|