-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
task: Attempt to address mobile responsiveness
- Loading branch information
1 parent
07e9302
commit b1014a1
Showing
4 changed files
with
58 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,21 @@ | ||
export const fonts = { | ||
sansSerif: | ||
'-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif', | ||
serif: 'Georgia, "Times New Roman", Times, serif', | ||
monospace: 'Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace, monospace' | ||
export const constants = { | ||
mq: { | ||
mobile: '@media (max-width: 420px)', | ||
phablet: '@media (min-width: 550px)', | ||
tablet: '@media (min-width: 750px)', | ||
desktop: '@media (min-width: 1000px)', | ||
xl: '@media (min-width: 1200px)', | ||
xxl: '@media (min-width: 1600px)' | ||
}, | ||
elevation: { | ||
raised: 10, | ||
overlay: 20 | ||
}, | ||
gutter: { | ||
default: '1.25rem', | ||
tablet: '2.5rem', | ||
desktop: '3.75rem' | ||
}, | ||
offset: '45vw', | ||
offsetXxl: '45rem' | ||
} |