@mixin flex($d: row, $j: flex-start, $a: flex-start, $t: flex) {
display: $t;
flex-direction: $d;
justify-content: $j;
align-items: $a;
}
Categories: Code Snippet
@mixin flex($d: row, $j: flex-start, $a: flex-start, $t: flex) {
display: $t;
flex-direction: $d;
justify-content: $j;
align-items: $a;
}
0 Comments