-
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.
fix: use min-width in custom-media breakpoint definitions (#2098)
- Loading branch information
1 parent
6d096dd
commit 3cccdeb
Showing
4 changed files
with
10 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
/** | ||
* IMPORTANT: This file is the result of assembling design tokens | ||
* Do not edit directly | ||
* Generated on Fri, 24 Feb 2023 11:38:50 GMT | ||
* Generated on Sun, 26 Feb 2023 16:21:31 GMT | ||
*/ | ||
|
||
@custom-media --pgn-size-breakpoint-xs (max-width: 0); | ||
@custom-media --pgn-size-breakpoint-sm (max-width: 576px); | ||
@custom-media --pgn-size-breakpoint-md (max-width: 768px); | ||
@custom-media --pgn-size-breakpoint-lg (max-width: 992px); | ||
@custom-media --pgn-size-breakpoint-xl (max-width: 1200px); | ||
@custom-media --pgn-size-breakpoint-xxl (max-width: 1400px); | ||
@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); |
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