mirror of
https://github.com/sst/opencode.git
synced 2025-12-23 10:11:41 +00:00
20 lines
388 B
CSS
20 lines
388 B
CSS
[data-component="resize-handle"] {
|
|
position: absolute;
|
|
z-index: 10;
|
|
|
|
&[data-direction="horizontal"] {
|
|
inset-block: 0;
|
|
inset-inline-end: 0;
|
|
width: 8px;
|
|
transform: translateX(50%);
|
|
cursor: ew-resize;
|
|
}
|
|
|
|
&[data-direction="vertical"] {
|
|
inset-inline: 0;
|
|
inset-block-start: 0;
|
|
height: 8px;
|
|
transform: translateY(-50%);
|
|
cursor: ns-resize;
|
|
}
|
|
}
|