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.
Connected.Components/Styles/utilities/flexbox/_align-self.scss

25 lines
486 B

@import '../../abstracts/variables';
@mixin align-self ($breakpoint) {
.align-self-#{$breakpoint}auto {
align-self: auto !important;
}
.align-self-#{$breakpoint}start {
align-self: flex-start !important;
}
.align-self-#{$breakpoint}end {
align-self: flex-end !important;
}
.align-self-#{$breakpoint}center {
align-self: center !important;
}
.align-self-#{$breakpoint}stretch {
align-self: stretch !important;
}
}
@include align-self("");