Skip to content

Commit

Permalink
Fix the "reverse" flex utilities
Browse files Browse the repository at this point in the history
These were incorrectly using the non-reverse value.
  • Loading branch information
Windvis committed Jul 31, 2024
1 parent a879ae8 commit 997ae18
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions styles/utilities/_u-flex.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ $au-flex-utilities-reverse-responsive-breakpoints: false !default;
}

.au-u-flex--row-reverse {
flex-direction: row !important;
flex-direction: row-reverse !important;
}

.au-u-flex--column-reverse {
flex-direction: column !important;
flex-direction: column-reverse !important;
}

.au-u-flex--start {
Expand Down Expand Up @@ -179,11 +179,11 @@ Set the global `$au-flex-utilities-reverse-responsive-breakpoints` variable to `
}

.au-u-flex--row-reverse\@#{$au-bp-name} {
flex-direction: row !important;
flex-direction: row-reverse !important;
}

.au-u-flex--column-reverse\@#{$au-bp-name} {
flex-direction: column !important;
flex-direction: column-reverse !important;
}

.au-u-flex--start\@#{$au-bp-name} {
Expand Down

0 comments on commit 997ae18

Please sign in to comment.