You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
429 B
21 lines
429 B
@import '../../abstracts/variables';
|
|
|
|
@mixin flex-direction ($breakpoint) {
|
|
.flex-#{$breakpoint}row {
|
|
flex-direction: row !important;
|
|
}
|
|
|
|
.flex-#{$breakpoint}row-reverse {
|
|
flex-direction: row-reverse !important;
|
|
}
|
|
|
|
.flex-#{$breakpoint}column {
|
|
flex-direction: column !important;
|
|
}
|
|
|
|
.flex-#{$breakpoint}column-reverse {
|
|
flex-direction: column-reverse !important;
|
|
}
|
|
}
|
|
|
|
@include flex-direction(""); |