Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4bbfd58

Browse files
committedDec 9, 2020
fix(blocksizes): make block sizes even numbers
making block sizes even to keep checkered background align nicely with borders
1 parent e01ec7b commit 4bbfd58

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/common/system.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// eslint-disable-next-line import/prefer-default-export
44
export const blockSizes = {
5-
sm: '27px',
6-
md: '35px',
7-
lg: '43px'
5+
sm: '28px',
6+
md: '36px',
7+
lg: '44px'
88
};

1 commit comments

Comments
 (1)
Please sign in to comment.