Updates
This commit is contained in:
parent
76bf623116
commit
4c7321f560
@ -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,
|
||||
|
||||
@ -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 {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user