-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed grammar issues on articles. Moved from pixels to em / rem
- Loading branch information
Alexandru Bereghici
committed
Sep 2, 2021
1 parent
fab3851
commit 131b8ce
Showing
14 changed files
with
100 additions
and
90 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
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
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,6 @@ | ||
export const layout = { | ||
pageMargin: '24px', | ||
maxContentWidth: '800px', | ||
pageMargin: '2rem', | ||
maxContentWidth: '50rem', | ||
} as const; | ||
|
||
export type Layout = typeof layout; |
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,10 +1,10 @@ | ||
export const mediaQueries = { | ||
mobile: `@media (max-width: 767px)`, | ||
tablet: `@media (min-width: 768px)`, | ||
desktop: `@media (min-width: 1024px)`, | ||
desktopLarge: `@media (min-width: 1184px)`, | ||
tabletOnly: `@media (min-width: 768px) and (max-width: 1023px)`, | ||
tabletOrSmaller: `@media (max-width: 1023px)`, | ||
mobile: `@media (max-width: 47.938em)`, | ||
tablet: `@media (min-width: 48em)`, | ||
desktop: `@media (min-width: 64em)`, | ||
desktopLarge: `@media (min-width: 74em)`, | ||
tabletOnly: `@media (min-width: 48em) and (max-width: 63.938em)`, | ||
tabletOrSmaller: `@media (max-width: 63.938em)`, | ||
} as const; | ||
|
||
export type MediaQueries = typeof mediaQueries; |
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,26 +1,26 @@ | ||
export const sizing = { | ||
scale0: '2px', | ||
scale100: '4px', | ||
scale200: '6px', | ||
scale300: '8px', | ||
scale400: '10px', | ||
scale500: '12px', | ||
scale550: '14px', | ||
scale600: '16px', | ||
scale650: '18px', | ||
scale700: '20px', | ||
scale750: '22px', | ||
scale800: '24px', | ||
scale850: '28px', | ||
scale900: '32px', | ||
scale950: '36px', | ||
scale1000: '40px', | ||
scale1200: '48px', | ||
scale1400: '56px', | ||
scale1600: '64px', | ||
scale2400: '96px', | ||
scale3200: '128px', | ||
scale4800: '192px', | ||
scale0: '0.125rem', | ||
scale100: '0.250rem', | ||
scale200: '0.375rem', | ||
scale300: '0.500rem', | ||
scale400: '0.625rem', | ||
scale500: '0.750rem', | ||
scale550: '0.875rem', | ||
scale600: '1rem', | ||
scale650: '1.125rem', | ||
scale700: '1.250rem', | ||
scale750: '1.375rem', | ||
scale800: '1.5rem', | ||
scale850: '1.750rem', | ||
scale900: '2rem', | ||
scale950: '2.250rem', | ||
scale1000: '2.500rem', | ||
scale1200: '3rem', | ||
scale1400: '3.5rem', | ||
scale1600: '4rem', | ||
scale2400: '6rem', | ||
scale3200: '8rem', | ||
scale4800: '12rem', | ||
} as const; | ||
|
||
export type Sizing = typeof sizing; |
Oops, something went wrong.