mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-01-06 15:15:05 +08:00
10 lines
223 B
CSS
10 lines
223 B
CSS
|
.resize-handle{
|
||
|
cursor: col-resize;
|
||
|
grid-column: 2 / 3;
|
||
|
min-width: 8px !important;
|
||
|
max-width: 8px !important;
|
||
|
height: 100%;
|
||
|
border-left: 1px dashed var(--border-color-primary);
|
||
|
user-select: none;
|
||
|
margin-left: 8px;
|
||
|
}
|