Skip to content

Commit ee7efbe

Browse files
authored
Add missing responsive flex utilities (#500)
The responsive versions of the `.au-u-flex` and `.au-u-flex--wrap` classes weren't being generated yet.
1 parent a879ae8 commit ee7efbe

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

styles/utilities/_u-flex.scss

+8
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,14 @@ Set the global `$au-flex-utilities-reverse-responsive-breakpoints` variable to `
146146
}
147147

148148
@include mq($from: $from, $until: $until) {
149+
.au-u-flex\@#{$au-bp-name} {
150+
display: flex !important;
151+
}
152+
153+
.au-u-flex--inline\@#{$au-bp-name} {
154+
display: inline-flex !important;
155+
}
156+
149157
.au-u-flex--wrap\@#{$au-bp-name} {
150158
flex-wrap: wrap !important;
151159
}

0 commit comments

Comments
 (0)