@kushagradhawan/kookie-ui 0.1.108 → 0.1.109

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/components.css +72 -51
  2. package/dist/cjs/components/_internal/shell-bottom.d.ts +2 -0
  3. package/dist/cjs/components/_internal/shell-bottom.d.ts.map +1 -1
  4. package/dist/cjs/components/_internal/shell-bottom.js +1 -1
  5. package/dist/cjs/components/_internal/shell-bottom.js.map +3 -3
  6. package/dist/cjs/components/_internal/shell-inspector.d.ts +2 -0
  7. package/dist/cjs/components/_internal/shell-inspector.d.ts.map +1 -1
  8. package/dist/cjs/components/_internal/shell-inspector.js +1 -1
  9. package/dist/cjs/components/_internal/shell-inspector.js.map +3 -3
  10. package/dist/cjs/components/_internal/shell-sidebar.d.ts +2 -0
  11. package/dist/cjs/components/_internal/shell-sidebar.d.ts.map +1 -1
  12. package/dist/cjs/components/_internal/shell-sidebar.js +1 -1
  13. package/dist/cjs/components/_internal/shell-sidebar.js.map +3 -3
  14. package/dist/cjs/components/shell.context.d.ts +13 -0
  15. package/dist/cjs/components/shell.context.d.ts.map +1 -1
  16. package/dist/cjs/components/shell.context.js +1 -1
  17. package/dist/cjs/components/shell.context.js.map +3 -3
  18. package/dist/cjs/components/shell.d.ts +14 -6
  19. package/dist/cjs/components/shell.d.ts.map +1 -1
  20. package/dist/cjs/components/shell.js +1 -1
  21. package/dist/cjs/components/shell.js.map +3 -3
  22. package/dist/esm/components/_internal/shell-bottom.d.ts +2 -0
  23. package/dist/esm/components/_internal/shell-bottom.d.ts.map +1 -1
  24. package/dist/esm/components/_internal/shell-bottom.js +1 -1
  25. package/dist/esm/components/_internal/shell-bottom.js.map +3 -3
  26. package/dist/esm/components/_internal/shell-inspector.d.ts +2 -0
  27. package/dist/esm/components/_internal/shell-inspector.d.ts.map +1 -1
  28. package/dist/esm/components/_internal/shell-inspector.js +1 -1
  29. package/dist/esm/components/_internal/shell-inspector.js.map +3 -3
  30. package/dist/esm/components/_internal/shell-sidebar.d.ts +2 -0
  31. package/dist/esm/components/_internal/shell-sidebar.d.ts.map +1 -1
  32. package/dist/esm/components/_internal/shell-sidebar.js +1 -1
  33. package/dist/esm/components/_internal/shell-sidebar.js.map +3 -3
  34. package/dist/esm/components/shell.context.d.ts +13 -0
  35. package/dist/esm/components/shell.context.d.ts.map +1 -1
  36. package/dist/esm/components/shell.context.js +1 -1
  37. package/dist/esm/components/shell.context.js.map +3 -3
  38. package/dist/esm/components/shell.d.ts +14 -6
  39. package/dist/esm/components/shell.d.ts.map +1 -1
  40. package/dist/esm/components/shell.js +1 -1
  41. package/dist/esm/components/shell.js.map +3 -3
  42. package/package.json +1 -1
  43. package/schemas/base-button.json +1 -1
  44. package/schemas/button.json +1 -1
  45. package/schemas/icon-button.json +1 -1
  46. package/schemas/index.json +6 -6
  47. package/schemas/toggle-button.json +1 -1
  48. package/schemas/toggle-icon-button.json +1 -1
  49. package/src/components/_internal/shell-bottom.tsx +15 -1
  50. package/src/components/_internal/shell-inspector.tsx +15 -1
  51. package/src/components/_internal/shell-sidebar.tsx +15 -1
  52. package/src/components/segmented-control.css +37 -37
  53. package/src/components/shell.context.tsx +14 -0
  54. package/src/components/shell.css +51 -28
  55. package/src/components/shell.tsx +150 -81
  56. package/styles.css +72 -51
package/styles.css CHANGED
@@ -18260,7 +18260,7 @@
18260
18260
  color: var(--gray-a8);
18261
18261
  background-color: var(--gray-3);
18262
18262
  }
18263
- .rt-SegmentedControlRoot.rt-r-orientation-vertical{
18263
+ .rt-SegmentedControlRoot:where(.rt-r-orientation-vertical){
18264
18264
  grid-auto-flow: row;
18265
18265
  grid-auto-columns: unset;
18266
18266
  grid-auto-rows: 1fr;
@@ -18268,7 +18268,7 @@
18268
18268
  min-height: -moz-max-content;
18269
18269
  min-height: max-content;
18270
18270
  }
18271
- .rt-SegmentedControlRoot.rt-r-orientation-vertical:has([data-icon-only]){
18271
+ .rt-SegmentedControlRoot:where(.rt-r-orientation-vertical):has([data-icon-only]){
18272
18272
  grid-auto-columns: unset;
18273
18273
  grid-auto-rows: minmax(var(--segmented-control-height), 1fr);
18274
18274
  }
@@ -18292,15 +18292,15 @@
18292
18292
  outline: var(--focus-outline-width) solid var(--focus-8);
18293
18293
  outline-offset: var(--focus-outline-offset-inset);
18294
18294
  }
18295
- .rt-r-orientation-vertical .rt-SegmentedControlItem{
18295
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlItem{
18296
18296
  flex-direction: column;
18297
18297
  }
18298
- .rt-r-orientation-vertical .rt-SegmentedControlItem:first-child{
18298
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlItem:first-child{
18299
18299
  border-top-left-radius: inherit;
18300
18300
  border-top-right-radius: inherit;
18301
18301
  border-bottom-left-radius: 0;
18302
18302
  }
18303
- .rt-r-orientation-vertical .rt-SegmentedControlItem:nth-last-child(2){
18303
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlItem:nth-last-child(2){
18304
18304
  border-bottom-left-radius: inherit;
18305
18305
  border-bottom-right-radius: inherit;
18306
18306
  border-top-right-radius: 0;
@@ -18364,7 +18364,7 @@
18364
18364
  :where(.rt-SegmentedControlRoot:has(:focus-visible)) .rt-SegmentedControlItemSeparator{
18365
18365
  transition-duration: 0ms;
18366
18366
  }
18367
- .rt-r-orientation-vertical .rt-SegmentedControlItemSeparator{
18367
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlItemSeparator{
18368
18368
  margin-left: calc(var(--space-1) * 0.75);
18369
18369
  margin-right: calc(var(--space-1) * 0.75);
18370
18370
  margin-top: calc(-1 * var(--border-width-standard) * 0.5);
@@ -18460,68 +18460,68 @@
18460
18460
  :where(.rt-SegmentedControlItem[data-state='on']:nth-child(10)) ~ .rt-SegmentedControlIndicator{
18461
18461
  transform: translateX(900%);
18462
18462
  }
18463
- .rt-r-orientation-vertical .rt-SegmentedControlIndicator{
18463
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator{
18464
18464
  width: 100%;
18465
18465
  height: unset;
18466
18466
  }
18467
- .rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(2){
18467
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(2){
18468
18468
  height: calc(100% / 1);
18469
18469
  }
18470
- .rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(3){
18470
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(3){
18471
18471
  height: calc(100% / 2);
18472
18472
  }
18473
- .rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(4){
18473
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(4){
18474
18474
  height: calc(100% / 3);
18475
18475
  }
18476
- .rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(5){
18476
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(5){
18477
18477
  height: calc(100% / 4);
18478
18478
  }
18479
- .rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(6){
18479
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(6){
18480
18480
  height: calc(100% / 5);
18481
18481
  }
18482
- .rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(7){
18482
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(7){
18483
18483
  height: calc(100% / 6);
18484
18484
  }
18485
- .rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(8){
18485
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(8){
18486
18486
  height: calc(100% / 7);
18487
18487
  }
18488
- .rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(9){
18488
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(9){
18489
18489
  height: calc(100% / 8);
18490
18490
  }
18491
- .rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(10){
18491
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(10){
18492
18492
  height: calc(100% / 9);
18493
18493
  }
18494
- .rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(11){
18494
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(11){
18495
18495
  height: calc(100% / 10);
18496
18496
  }
18497
- .rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(1) ~ .rt-SegmentedControlIndicator{
18497
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(1) ~ .rt-SegmentedControlIndicator{
18498
18498
  transform: translateY(0%);
18499
18499
  }
18500
- .rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(2) ~ .rt-SegmentedControlIndicator{
18500
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(2) ~ .rt-SegmentedControlIndicator{
18501
18501
  transform: translateY(100%);
18502
18502
  }
18503
- .rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(3) ~ .rt-SegmentedControlIndicator{
18503
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(3) ~ .rt-SegmentedControlIndicator{
18504
18504
  transform: translateY(200%);
18505
18505
  }
18506
- .rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(4) ~ .rt-SegmentedControlIndicator{
18506
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(4) ~ .rt-SegmentedControlIndicator{
18507
18507
  transform: translateY(300%);
18508
18508
  }
18509
- .rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(5) ~ .rt-SegmentedControlIndicator{
18509
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(5) ~ .rt-SegmentedControlIndicator{
18510
18510
  transform: translateY(400%);
18511
18511
  }
18512
- .rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(6) ~ .rt-SegmentedControlIndicator{
18512
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(6) ~ .rt-SegmentedControlIndicator{
18513
18513
  transform: translateY(500%);
18514
18514
  }
18515
- .rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(7) ~ .rt-SegmentedControlIndicator{
18515
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(7) ~ .rt-SegmentedControlIndicator{
18516
18516
  transform: translateY(600%);
18517
18517
  }
18518
- .rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(8) ~ .rt-SegmentedControlIndicator{
18518
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(8) ~ .rt-SegmentedControlIndicator{
18519
18519
  transform: translateY(700%);
18520
18520
  }
18521
- .rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(9) ~ .rt-SegmentedControlIndicator{
18521
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(9) ~ .rt-SegmentedControlIndicator{
18522
18522
  transform: translateY(800%);
18523
18523
  }
18524
- .rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(10) ~ .rt-SegmentedControlIndicator{
18524
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(10) ~ .rt-SegmentedControlIndicator{
18525
18525
  transform: translateY(900%);
18526
18526
  }
18527
18527
  .rt-SegmentedControlItemLabel,
@@ -19130,39 +19130,39 @@
19130
19130
  padding-left: 0;
19131
19131
  padding-right: 0;
19132
19132
  }
19133
- .rt-r-orientation-vertical .rt-SegmentedControlItem[data-icon-only]{
19133
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-icon-only]{
19134
19134
  min-width: unset;
19135
19135
  min-height: var(--segmented-control-height);
19136
19136
  }
19137
- .rt-r-orientation-vertical .rt-SegmentedControlItem[data-icon-only] .rt-SegmentedControlItemLabel{
19137
+ :where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-icon-only] .rt-SegmentedControlItemLabel{
19138
19138
  padding-top: 0;
19139
19139
  padding-bottom: 0;
19140
19140
  }
19141
- .rt-SegmentedControlRoot.rt-r-orientation-vertical.rt-r-size-1:has([data-icon-only]){
19141
+ .rt-SegmentedControlRoot:where(.rt-r-orientation-vertical):where(.rt-r-size-1):has([data-icon-only]){
19142
19142
  width: var(--space-5);
19143
19143
  }
19144
- .rt-SegmentedControlRoot.rt-r-orientation-vertical.rt-r-size-2:has([data-icon-only]){
19144
+ .rt-SegmentedControlRoot:where(.rt-r-orientation-vertical):where(.rt-r-size-2):has([data-icon-only]){
19145
19145
  width: var(--space-6);
19146
19146
  }
19147
- .rt-SegmentedControlRoot.rt-r-orientation-vertical.rt-r-size-3:has([data-icon-only]){
19147
+ .rt-SegmentedControlRoot:where(.rt-r-orientation-vertical):where(.rt-r-size-3):has([data-icon-only]){
19148
19148
  width: var(--space-7);
19149
19149
  }
19150
- .rt-SegmentedControlRoot.rt-r-orientation-vertical.rt-r-size-4:has([data-icon-only]){
19150
+ .rt-SegmentedControlRoot:where(.rt-r-orientation-vertical):where(.rt-r-size-4):has([data-icon-only]){
19151
19151
  width: var(--space-8);
19152
19152
  }
19153
- .rt-r-orientation-vertical.rt-r-size-1 .rt-SegmentedControlItemLabel{
19153
+ :where(.rt-r-orientation-vertical):where(.rt-r-size-1) .rt-SegmentedControlItemLabel{
19154
19154
  padding-top: var(--space-1);
19155
19155
  padding-bottom: var(--space-1);
19156
19156
  }
19157
- .rt-r-orientation-vertical.rt-r-size-2 .rt-SegmentedControlItemLabel{
19157
+ :where(.rt-r-orientation-vertical):where(.rt-r-size-2) .rt-SegmentedControlItemLabel{
19158
19158
  padding-top: var(--space-2);
19159
19159
  padding-bottom: var(--space-2);
19160
19160
  }
19161
- .rt-r-orientation-vertical.rt-r-size-3 .rt-SegmentedControlItemLabel{
19161
+ :where(.rt-r-orientation-vertical):where(.rt-r-size-3) .rt-SegmentedControlItemLabel{
19162
19162
  padding-top: var(--space-2);
19163
19163
  padding-bottom: var(--space-2);
19164
19164
  }
19165
- .rt-r-orientation-vertical.rt-r-size-4 .rt-SegmentedControlItemLabel{
19165
+ :where(.rt-r-orientation-vertical):where(.rt-r-size-4) .rt-SegmentedControlItemLabel{
19166
19166
  padding-top: var(--space-3);
19167
19167
  padding-bottom: var(--space-3);
19168
19168
  }
@@ -22259,9 +22259,6 @@
22259
22259
  .rt-ShellRail[data-mode='collapsed']{
22260
22260
  width: 0px;
22261
22261
  transition-delay: var(--motion-duration-small);
22262
- position: absolute;
22263
- inset-block: 0;
22264
- inset-inline-start: 0;
22265
22262
  }
22266
22263
  .rt-ShellRailContent{
22267
22264
  display: flex;
@@ -22270,13 +22267,17 @@
22270
22267
  height: 100%;
22271
22268
  gap: var(--space-2);
22272
22269
  opacity: 0;
22270
+ pointer-events: none;
22273
22271
  transition: opacity var(--motion-duration-small) var(--motion-ease-standard) var(--motion-duration-small);
22274
22272
  }
22275
22273
  .rt-ShellRailContent[data-visible]{
22276
22274
  opacity: 1;
22275
+ pointer-events: auto;
22277
22276
  }
22278
22277
  .rt-ShellRail[data-mode='collapsed'] .rt-ShellRailContent{
22279
22278
  opacity: 0;
22279
+ width: 0;
22280
+ visibility: hidden;
22280
22281
  transition: opacity var(--motion-duration-small) var(--motion-ease-standard);
22281
22282
  }
22282
22283
  .rt-ShellPanel{
@@ -22294,9 +22295,6 @@
22294
22295
  .rt-ShellPanel:not([data-visible]){
22295
22296
  width: 0px;
22296
22297
  transition-delay: var(--motion-duration-small);
22297
- position: absolute;
22298
- inset-block: 0;
22299
- inset-inline-start: var(--peek-rail-width, var(--rail-size, 64px));
22300
22298
  }
22301
22299
  .rt-ShellPanelContent{
22302
22300
  display: flex;
@@ -22305,13 +22303,17 @@
22305
22303
  height: 100%;
22306
22304
  overflow: hidden;
22307
22305
  opacity: 0;
22306
+ pointer-events: none;
22308
22307
  transition: opacity var(--motion-duration-small) var(--motion-ease-standard) var(--motion-duration-small);
22309
22308
  }
22310
22309
  .rt-ShellPanelContent[data-visible]{
22311
22310
  opacity: 1;
22311
+ pointer-events: auto;
22312
22312
  }
22313
22313
  .rt-ShellPanel:not([data-visible]) .rt-ShellPanelContent{
22314
22314
  opacity: 0;
22315
+ width: 0;
22316
+ visibility: hidden;
22315
22317
  transition: opacity var(--motion-duration-small) var(--motion-ease-standard);
22316
22318
  }
22317
22319
  .rt-ShellSidebar{
@@ -22334,11 +22336,6 @@
22334
22336
  }
22335
22337
  .rt-ShellSidebar[data-mode='collapsed']{
22336
22338
  width: 0px;
22337
- position: absolute;
22338
- inset-block: 0;
22339
- inset-inline-start: 0;
22340
- flex-shrink: 0;
22341
- flex-basis: 0;
22342
22339
  transition-delay: var(--motion-duration-small);
22343
22340
  }
22344
22341
  .rt-ShellSidebarContent{
@@ -22348,6 +22345,7 @@
22348
22345
  height: 100%;
22349
22346
  overflow: hidden;
22350
22347
  opacity: 0;
22348
+ pointer-events: none;
22351
22349
  transition: opacity var(--motion-duration-small) var(--motion-ease-standard) var(--motion-duration-small);
22352
22350
  }
22353
22351
  .rt-ShellSidebar[data-mode='thin'] .rt-ShellResizer{
@@ -22355,6 +22353,7 @@
22355
22353
  }
22356
22354
  .rt-ShellSidebarContent[data-visible]{
22357
22355
  opacity: 1;
22356
+ pointer-events: auto;
22358
22357
  }
22359
22358
  .rt-ShellSidebarContent[data-phase='hiding']{
22360
22359
  opacity: 0;
@@ -22369,6 +22368,8 @@
22369
22368
  }
22370
22369
  .rt-ShellSidebar[data-mode='collapsed'] .rt-ShellSidebarContent{
22371
22370
  opacity: 0;
22371
+ width: 0;
22372
+ visibility: hidden;
22372
22373
  transition: opacity var(--motion-duration-small) var(--motion-ease-standard);
22373
22374
  }
22374
22375
  .rt-ShellSidebar[data-presentation='stacked']{
@@ -22419,13 +22420,17 @@
22419
22420
  height: 100%;
22420
22421
  overflow: hidden;
22421
22422
  opacity: 0;
22423
+ pointer-events: none;
22422
22424
  transition: opacity var(--motion-duration-small) var(--motion-ease-standard) var(--motion-duration-small);
22423
22425
  }
22424
22426
  .rt-ShellInspectorContent[data-visible]{
22425
22427
  opacity: 1;
22428
+ pointer-events: auto;
22426
22429
  }
22427
22430
  .rt-ShellInspector[data-mode='collapsed'] .rt-ShellInspectorContent{
22428
22431
  opacity: 0;
22432
+ width: 0;
22433
+ visibility: hidden;
22429
22434
  transition: opacity var(--motion-duration-small) var(--motion-ease-standard);
22430
22435
  }
22431
22436
  .rt-ShellBottom{
@@ -22442,9 +22447,6 @@
22442
22447
  }
22443
22448
  .rt-ShellBottom[data-mode='collapsed']{
22444
22449
  height: 0px;
22445
- position: absolute;
22446
- inset-inline: 0;
22447
- inset-block-end: 0;
22448
22450
  transition-delay: var(--motion-duration-small);
22449
22451
  }
22450
22452
  .rt-ShellBottomContent{
@@ -22454,10 +22456,12 @@
22454
22456
  height: var(--bottom-size, 200px);
22455
22457
  overflow: hidden;
22456
22458
  opacity: 0;
22459
+ pointer-events: none;
22457
22460
  transition: opacity var(--motion-duration-small) var(--motion-ease-standard) var(--motion-duration-small);
22458
22461
  }
22459
22462
  .rt-ShellBottomContent[data-visible]{
22460
22463
  opacity: 1;
22464
+ pointer-events: auto;
22461
22465
  }
22462
22466
  .rt-ShellPanel[data-resizing],
22463
22467
  .rt-ShellSidebar[data-resizing],
@@ -22479,6 +22483,8 @@
22479
22483
  }
22480
22484
  .rt-ShellBottom[data-mode='collapsed'] .rt-ShellBottomContent{
22481
22485
  opacity: 0;
22486
+ height: 0;
22487
+ visibility: hidden;
22482
22488
  transition: opacity var(--motion-duration-small) var(--motion-ease-standard);
22483
22489
  }
22484
22490
  [data-presentation='overlay']{
@@ -22639,6 +22645,21 @@
22639
22645
  .rt-ShellBottom[data-peek][data-mode='collapsed']{
22640
22646
  height: var(--bottom-size, 200px);
22641
22647
  }
22648
+ .rt-ShellBody[data-has-inset]{
22649
+ background: var(--gray-2);
22650
+ }
22651
+ .rt-ShellLeft[data-inset],
22652
+ .rt-ShellSidebar[data-inset],
22653
+ .rt-ShellContent[data-inset],
22654
+ .rt-ShellInspector[data-inset],
22655
+ .rt-ShellBottom[data-inset]{
22656
+ --shell-inset-gap: var(--space-2);
22657
+ margin: var(--shell-inset-gap);
22658
+ border-radius: var(--radius-3);
22659
+ background: var(--color-background);
22660
+ box-shadow: var(--shadow-2);
22661
+ height: auto;
22662
+ }
22642
22663
  .rt-SliderRoot{
22643
22664
  --slider-thumb-width: var(--space-3);
22644
22665
  --slider-thumb-height: var(--space-2);