refactor: Comment out decal mapping in Wall component and clean up dashboard styles

This commit is contained in:
2025-07-10 12:20:43 +05:30
parent 541ddfbb06
commit 6f7f6549db
2 changed files with 2 additions and 8 deletions

View File

@@ -152,9 +152,9 @@ function Wall({ wall }: { readonly wall: Wall }) {
>
<MeshDiscardMaterial />
{wall.decals.map((decal) => (
{/* {wall.decals.map((decal) => (
<DecalInstance zPosition={wall.wallThickness / 2 + 0.001} visible={visible} key={decal.decalUuid} decal={decal} />
))}
))} */}
</mesh>
</mesh>
);

View File

@@ -84,12 +84,6 @@
font-weight: var(--font-weight-medium);
background: var(--background-color-button);
svg {
path {
stroke: var(--background-color-selected);
}
}
&:hover {
background: var(--background-color-button);
}