bolt.new/app/styles/components/resize-handle.scss
Dustin Loring 142a43f030 fix: various fixes
fixes various errors and warning
2025-01-11 19:40:37 -05:00

31 lines
562 B
SCSS

@use '../z-index' as *;
[data-resize-handle] {
position: relative;
&[data-panel-group-direction='horizontal']:after {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: -6px;
right: -5px;
z-index: $zIndexMax;
}
&[data-panel-group-direction='vertical']:after {
content: '';
position: absolute;
left: 0;
right: 0;
top: -5px;
bottom: -6px;
z-index: $zIndexMax;
}
&[data-resize-handle-state='hover']:after,
&[data-resize-handle-state='drag']:after {
background-color: #8882;
}
}