This commit is contained in:
2026-03-09 16:57:12 +00:00
parent 76bf623116
commit 4c7321f560
2 changed files with 13 additions and 6 deletions
+13 -1
View File
@@ -30,7 +30,19 @@
}
.nested-grid-frame {
@apply bg-foreground-light/10 dark:bg-foreground-dark/10 grid p-0! h-full;
@apply bg-background-light dark:bg-background-dark;
/* @apply bg-foreground-light/10 dark:bg-foreground-dark/10; */
@apply grid p-0! h-full relative;
}
.nested-grid-frame::after {
content: "";
@apply bg-foreground-light/10 dark:bg-foreground-dark/10;
@apply absolute top-0 left-0 w-full h-full z-1;
}
.nested-grid-frame .grid-cell {
@apply relative z-2;
}
.grid-frame.nested-grid-frame .grid-cell {