Skip to content

Commit 4dbadba

Browse files
committed
adding breakpoints to theme
1 parent 04a39ef commit 4dbadba

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/styles/themes/breakpoints.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export const breakpoints = {
2+
mobile: '600px',
3+
tablet: '900px',
4+
laptop: '1200px',
5+
desktop: '1440px',
6+
};

src/styles/themes/default.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
import { breakpoints } from './breakpoints';
12
export const defaultTheme = {
3+
breakpoints,
4+
25
white: '#FFFFFF',
36

47
// 'gray-50': '#E9E9E9',

0 commit comments

Comments
 (0)