diff --git a/packages/client-next/src/components/Pallete.tsx b/packages/client-next/src/components/Pallete.tsx
index 89e0725..d068ae5 100644
--- a/packages/client-next/src/components/Pallete.tsx
+++ b/packages/client-next/src/components/Pallete.tsx
@@ -4,6 +4,7 @@ import { Canvas } from "../lib/canvas";
import { IPalleteContext } from "../types";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faXmark } from "@fortawesome/free-solid-svg-icons";
+import { CanvasMeta } from "./CanvasMeta";
export const Pallete = () => {
const { config, user } = useAppContext();
@@ -66,25 +67,3 @@ export const Pallete = () => {
);
};
-
-export const CanvasMeta = () => {
- const { canvasPosition } = useAppContext();
-
- return (
-
- {canvasPosition && (
-
-
-
- )}
-
- Pixels: 123
-
-
- Users Online: 321
-
-
- );
-};
diff --git a/packages/client-next/src/style.scss b/packages/client-next/src/style.scss
index 767fe2d..faba6f0 100644
--- a/packages/client-next/src/style.scss
+++ b/packages/client-next/src/style.scss
@@ -10,13 +10,11 @@ html,
body {
overscroll-behavior: contain;
touch-action: none;
+
+ background-color: #ddd !important;
}
-body {
- background-color: #ddd;
-}
-
-header {
+header#main-header {
position: fixed;
top: 0;
left: 0;
diff --git a/packages/client-next/tailwind.config.js b/packages/client-next/tailwind.config.js
index 952e1c5..c5f2d91 100644
--- a/packages/client-next/tailwind.config.js
+++ b/packages/client-next/tailwind.config.js
@@ -7,6 +7,7 @@ export default {
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
+ "../../node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},