This commit is contained in:
Benjamin Toby 2026-03-09 16:57:12 +00:00
parent 76bf623116
commit 4c7321f560
2 changed files with 13 additions and 6 deletions

View File

@ -22,11 +22,6 @@ export default function useAppInit(pageProps: PagePropsType) {
const ws = { socket, sendData };
useEffect(() => {
console.log("wsURL", wsURL);
console.log("socket", socket);
}, [socket]);
return {
socket,
sendData,

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 {