2022-12-02 14:54:26 +01:00

29 lines
673 B
SCSS

@import '../../abstracts/variables';
@mixin justify-content ($breakpoint) {
.justify-#{$breakpoint}start {
justify-content: flex-start !important;
}
.justify-#{$breakpoint}end {
justify-content: flex-end !important;
}
.justify-#{$breakpoint}center {
justify-content: center !important;
}
.justify-#{$breakpoint}space-between {
justify-content: space-between !important;
}
.justify-#{$breakpoint}space-around {
justify-content: space-around !important;
}
.justify-#{$breakpoint}space-evenly {
justify-content: space-evenly !important;
}
}
@include justify-content("");