blob: 2f01987650330957837d080f0642813db8ac3393 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
@use 'pkg:iro-sass/bem';
@mixin styles {
@include bem.layout('flex') {
display: flex;
@include bem.modifier('column') {
flex-direction: column;
}
@include bem.modifier('wrap') {
flex-wrap: wrap;
}
@include bem.modifier('wrap-reverse') {
flex-wrap: wrap-reverse;
}
}
}
|