-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: remove SCSS variables in docs site and start using custom media…
… queries
- Loading branch information
1 parent
fa6f30e
commit fc7aab5
Showing
31 changed files
with
532 additions
and
272 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,12 +1,17 @@ | ||
/** | ||
* IMPORTANT: This file is the result of assembling design tokens | ||
* Do not edit directly | ||
* Generated on Thu, 27 Apr 2023 12:12:55 GMT | ||
* Generated on Fri, 28 Apr 2023 09:30:45 GMT | ||
*/ | ||
|
||
@custom-media --pgn-size-breakpoint-xs (min-width: 0); | ||
@custom-media --pgn-size-breakpoint-sm (min-width: 576px); | ||
@custom-media --pgn-size-breakpoint-md (min-width: 768px); | ||
@custom-media --pgn-size-breakpoint-lg (min-width: 992px); | ||
@custom-media --pgn-size-breakpoint-xl (min-width: 1200px); | ||
@custom-media --pgn-size-breakpoint-xxl (min-width: 1400px); | ||
@custom-media --min-pgn-size-breakpoint-xs (min-width: 0); | ||
@custom-media --max-pgn-size-breakpoint-xs (max-width: 576px); | ||
@custom-media --min-pgn-size-breakpoint-sm (min-width: 576px); | ||
@custom-media --max-pgn-size-breakpoint-sm (max-width: 768px); | ||
@custom-media --min-pgn-size-breakpoint-md (min-width: 768px); | ||
@custom-media --max-pgn-size-breakpoint-md (max-width: 992px); | ||
@custom-media --min-pgn-size-breakpoint-lg (min-width: 992px); | ||
@custom-media --max-pgn-size-breakpoint-lg (max-width: 1200px); | ||
@custom-media --min-pgn-size-breakpoint-xl (min-width: 1200px); | ||
@custom-media --max-pgn-size-breakpoint-xl (max-width: 1400px); | ||
@custom-media --min-pgn-size-breakpoint-xxl (min-width: 1400px); |
Oops, something went wrong.