Skip to content

Commit 326001c

Browse files
driskullgithub-actions[bot]
authored andcommitted
fix(shell): fix resizing a slotted shell-panel when clicking to resize (#9846)
**Related Issue:** #9807 ## Summary - fixes styles when resizing - makes non interactive container not suddenly jump full height/width. - cleanup
1 parent 8af34e2 commit 326001c

File tree

1 file changed

+4
-8
lines changed
  • packages/calcite-components/src/components/shell

1 file changed

+4
-8
lines changed

packages/calcite-components/src/components/shell/shell.scss

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,13 @@
2929
overflow-hidden;
3030
}
3131

32-
.content,
33-
.content--non-interactive {
32+
.content {
3433
@apply flex
3534
h-full
3635
w-full
3736
flex-col
38-
flex-nowrap;
39-
}
40-
41-
.content {
42-
@apply overflow-auto;
37+
flex-nowrap
38+
overflow-auto;
4339
justify-content: space-between;
4440
}
4541

@@ -59,7 +55,7 @@
5955
}
6056

6157
.content--non-interactive {
62-
@apply pointer-events-none;
58+
@apply flex pointer-events-none;
6359
}
6460

6561
::slotted(calcite-shell-center-row) {

0 commit comments

Comments
 (0)