File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -620,7 +620,7 @@ export const EngineStream = (props: {
620
620
isRetrying = { timeoutId !== undefined && ! firstRun }
621
621
retryAttemptCountdown = { attemptTimes [ 1 ] }
622
622
dataTestId = "loading-engine"
623
- className = "fixed inset-0 h-screen"
623
+ className = "absolute inset-0 h-screen"
624
624
>
625
625
Connecting and setting up scene...
626
626
</ Loading >
Original file line number Diff line number Diff line change @@ -220,11 +220,10 @@ export function ModelingSidebar() {
220
220
< Resizable
221
221
className = { `group z-10 flex flex-col ${ pointerEventsCssClass } ${ context . store ?. openPanes . length ? undefined : '!w-auto' } ` }
222
222
defaultSize = { {
223
- width : context . store ?. openPanes . length ? '550px' : undefined ,
223
+ width : '550px' ,
224
224
height : 'auto' ,
225
225
} }
226
226
minWidth = { context . store ?. openPanes . length ? 200 : undefined }
227
- maxWidth = { window . innerWidth - 10 }
228
227
handleWrapperClass = "sidebar-resize-handles"
229
228
enable = { {
230
229
right : true ,
@@ -443,6 +442,7 @@ function ResizeHandle(props: HTMLProps<HTMLDivElement>) {
443
442
{ ...props }
444
443
className = { 'group/grip absolute inset-0 ' + props . className }
445
444
>
445
+ < div className = "hidden group-hover/grip:block absolute bg-chalkboard-30 dark:bg-chalkboard-70 w-[1px] h-auto left-1/2 top-0 bottom-0" />
446
446
< div
447
447
className = {
448
448
'hidden group-hover/grip:block py-1 absolute top-1/2 -translate-y-1/2 left-1/2 -translate-x-1/2 rounded-sm w-fit group-hover/grip:bg-chalkboard-30 group-hover/grip:dark:bg-chalkboard-70 bg-transparent transition-colors border border-transparent group-hover/grip:border-chalkboard-40 dark:group-hover/grip:border-chalkboard-90 duration-75 transition-ease-out delay-100'
You can’t perform that action at this time.
0 commit comments