Skip to content

Commit bbb5040

Browse files
committed
make sidebar a bit larger
1 parent ff06de3 commit bbb5040

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/client/src/feature/game/Game.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ export const Game = () => {
247247
}
248248

249249
return (
250-
<div className="w-[calc(100vw-20rem)]">
250+
<div className="w-[calc(100vw-24rem)]">
251251
<div className="grid justify-center mt-8">
252252
<canvas ref={canvasRef}
253253
onMouseLeave={() => {

src/main/client/src/feature/game/GamePanel.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import {
3737
export const GamePanel = ({zoom, setZoom}) => {
3838
return (
3939
<div className="fixed top-0 right-0 z-1 h-full bg-slate-800 border-l-2 border-slate-700">
40-
<div className="w-80 pr-3 pt-4 pl-2 h-full flex flex-col gap-y-1">
40+
<div className="w-[24rem] pr-3 pt-4 pl-2 h-full flex flex-col gap-y-1">
4141
<Panel zoom={zoom} setZoom={setZoom} />
4242
</div>
4343
</div>

src/main/client/src/feature/lobby/LobbyPanel.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414

1515
export const LobbyPanel = () => {
1616
return (
17-
<div className="fixed top-0 right-0 w-64 h-full bg-slate-800 border-l-2 border-slate-700">
17+
<div className="fixed top-0 right-0 w-[24rem] h-full bg-slate-800 border-l-2 border-slate-700">
1818
<div className="pt-2">
1919
<Panel />
2020
</div>

0 commit comments

Comments
 (0)