Skip to content

Commit

Permalink
Add missing responsive flex utilities (#500)
Browse files Browse the repository at this point in the history
The responsive versions of the `.au-u-flex` and `.au-u-flex--wrap` classes weren't being generated yet.
  • Loading branch information
Windvis authored Jul 31, 2024
1 parent a879ae8 commit ee7efbe
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions styles/utilities/_u-flex.scss
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,14 @@ Set the global `$au-flex-utilities-reverse-responsive-breakpoints` variable to `
}

@include mq($from: $from, $until: $until) {
.au-u-flex\@#{$au-bp-name} {
display: flex !important;
}

.au-u-flex--inline\@#{$au-bp-name} {
display: inline-flex !important;
}

.au-u-flex--wrap\@#{$au-bp-name} {
flex-wrap: wrap !important;
}
Expand Down

0 comments on commit ee7efbe

Please sign in to comment.