Skip to content

Commit

Permalink
fix: CELL_SIZE에서 패딩 사이즈 빼기
Browse files Browse the repository at this point in the history
  • Loading branch information
ooooorobo committed Aug 18, 2023
1 parent dc43575 commit 9576b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/view/constants/table.ts
@@ -1,4 +1,4 @@
export const CELL_SIZE = 65;
export const CELL_SIZE = 65 - 4;
export const GAP_BETWEEN_CELLS = 2;
export const GAP_BETWEEN_SECTIONS = 2;
export const PADDING_IN_SECTION = 3;
Expand Down

0 comments on commit 9576b51

Please sign in to comment.