removed tailwind config

This commit is contained in:
MasterGordon 2026-04-22 21:52:48 +02:00
parent 19dcf025e6
commit 17998bc613
2 changed files with 5 additions and 5 deletions

View File

@ -188,11 +188,11 @@ const Board: React.FC<BoardProps> = (props) => {
(props.width || props.height (props.width || props.height
? { left: 0, right: boardWidth, top: 0, bottom: boardHeight } ? { left: 0, right: boardWidth, top: 0, bottom: boardHeight }
: { : {
left: -theme.size, left: -theme.size,
right: boardWidth + theme.size, right: boardWidth + theme.size,
top: -theme.size, top: -theme.size,
bottom: boardHeight + theme.size, bottom: boardHeight + theme.size,
}), }),
[boardHeight, boardWidth, props.height, props.width, theme], [boardHeight, boardWidth, props.height, props.width, theme],
); );
const clampZoom = useMemo( const clampZoom = useMemo(

View File