Skip to content

Commit

Permalink
Added LTR, RTL, TTB, BTT directions to desktop breakpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
aletail committed Mar 19, 2024
1 parent 0249dea commit 00a88b5
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions sass/base/layout/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,21 @@
.#{$label}-show{
display: inherit;
}
/* Flex Container Direction */
.flex-container{
&.#{$label}-ltr{
flex-direction: row;
}
&.#{$label}-rtl{
flex-direction: row-reverse;
}
&.#{$label}-ttb{
flex-direction: column;
}
&.#{$label}-btt{
flex-direction: column-reverse;
}
}
}
}
/*
Expand Down

0 comments on commit 00a88b5

Please sign in to comment.