Skip to content

Commit

Permalink
feat: new max-height and max-width sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
jmjuanes committed Apr 13, 2023
1 parent 34e4e4e commit 9640e9d
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions low/_config.scss
Original file line number Diff line number Diff line change
Expand Up @@ -522,22 +522,31 @@ $margin: map.merge($space, (
auto: auto,
)) !default;

$max-height: (
$max-height: map.merge($sizes, (
0: 0px,
full: 100%,
screen: 100vh,
max: max-content,
min: min-content,
fit: fit-content,
) !default;
)) !default;

$max-width: (
0: 0px,
xs: 20rem,
sm: 24rem,
md: 28rem,
lg: 32rem,
xl: 36rem,
2xl: 42rem,
3xl: 48rem,
4xl: 56rem,
5xl: 64rem,
screen-sm: 640px,
screen-md: 768px,
screen-lg: 1024px,
screen-xl: 1280px,
screen-2xl: 1536px, // map.get($breakpoints, "2xl"),
screen-2xl: 1536px,
full: 100%,
screen: 100vw,
max: max-content,
Expand Down

0 comments on commit 9640e9d

Please sign in to comment.