mirror of
https://github.com/maputnik/editor.git
synced 2025-12-27 08:30:02 +00:00
22 lines
419 B
SCSS
22 lines
419 B
SCSS
@mixin vendor-prefix($name, $argument) {
|
|
-webkit-#{$name}: #{$argument};
|
|
-ms-#{$name}: #{$argument};
|
|
-moz-#{$name}: #{$argument};
|
|
-o-#{$name}: #{$argument};
|
|
#{$name}: #{$argument};
|
|
}
|
|
|
|
@mixin flex-row {
|
|
display: flex;
|
|
display: -ms-flexbox;
|
|
|
|
@include vendor-prefix(flex-direction, row);
|
|
}
|
|
|
|
@mixin flex-column {
|
|
display: flex;
|
|
display: -ms-flexbox;
|
|
|
|
@include vendor-prefix(flex-direction, column);
|
|
}
|