Connecting and setting up scene...
diff --git a/src/components/ModelingSidebar/ModelingPane.module.css b/src/components/ModelingSidebar/ModelingPane.module.css
index 201a02d4a7..d425441608 100644
--- a/src/components/ModelingSidebar/ModelingPane.module.css
+++ b/src/components/ModelingSidebar/ModelingPane.module.css
@@ -1,23 +1,27 @@
.panel {
- @apply relative z-0 rounded-r max-w-full flex-auto;
+ @apply relative z-0 max-w-full flex-auto;
display: grid;
grid-template-rows: auto 1fr;
- @apply bg-chalkboard-10/50 focus-within:bg-chalkboard-10/90 backdrop-blur-sm border border-chalkboard-30;
+ @apply bg-chalkboard-10 border-chalkboard-30;
scroll-margin-block-start: 41px;
}
+.panel:not(:first-child) {
+ @apply border-t;
+}
+
.header::before,
.header::-webkit-details-marker {
display: none;
}
:global(.dark) .panel {
- @apply bg-chalkboard-100/50 focus-within:bg-chalkboard-100/90 backdrop-blur-[3px] border-chalkboard-80;
+ @apply bg-chalkboard-100 border-chalkboard-80;
}
.header {
- @apply z-10 relative rounded-tr;
- @apply flex h-[41px] items-center justify-between gap-2 px-2;
+ @apply z-10 relative;
+ @apply flex items-center justify-between gap-2 py-1 px-2;
@apply text-xs select-none text-chalkboard-90;
@apply bg-chalkboard-10 border-b border-chalkboard-30;
}
diff --git a/src/components/ModelingSidebar/ModelingPane.tsx b/src/components/ModelingSidebar/ModelingPane.tsx
index 4bacb861a0..64fc4dc9af 100644
--- a/src/components/ModelingSidebar/ModelingPane.tsx
+++ b/src/components/ModelingSidebar/ModelingPane.tsx
@@ -32,7 +32,6 @@ export const ModelingPaneHeader = ({
{icon && (
+ ),
}}
>
-