From 17998bc6136c5882bf519f247e4a1ca7d2e4448c Mon Sep 17 00:00:00 2001 From: MasterGordon Date: Wed, 22 Apr 2026 21:52:48 +0200 Subject: [PATCH] removed tailwind config --- src/components/Board.tsx | 10 +++++----- tailwind.config.js | 0 2 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 tailwind.config.js diff --git a/src/components/Board.tsx b/src/components/Board.tsx index 3f81778..b75216e 100644 --- a/src/components/Board.tsx +++ b/src/components/Board.tsx @@ -188,11 +188,11 @@ const Board: React.FC = (props) => { (props.width || props.height ? { left: 0, right: boardWidth, top: 0, bottom: boardHeight } : { - left: -theme.size, - right: boardWidth + theme.size, - top: -theme.size, - bottom: boardHeight + theme.size, - }), + left: -theme.size, + right: boardWidth + theme.size, + top: -theme.size, + bottom: boardHeight + theme.size, + }), [boardHeight, boardWidth, props.height, props.width, theme], ); const clampZoom = useMemo( diff --git a/tailwind.config.js b/tailwind.config.js deleted file mode 100644 index e69de29..0000000