35 lines
594 B
SCSS
35 lines
594 B
SCSS
@mixin clearfix() {
|
|
&::after {
|
|
content: "";
|
|
clear: both;
|
|
display: table;
|
|
}
|
|
}
|
|
|
|
@mixin config-bg-colors($prefix, $bg-color-...) {
|
|
@each $i in $bg-color- {
|
|
.#{$prefix}#{nth($i, 1)} {
|
|
background: nth($i, 2);
|
|
}
|
|
}
|
|
}
|
|
|
|
@mixin placeholder {
|
|
&::-webkit-input-placeholder {
|
|
@content;
|
|
}
|
|
&:-moz-placeholder {
|
|
@content;
|
|
}
|
|
&::-moz-placeholder {
|
|
@content;
|
|
}
|
|
&:-ms-input-placeholder {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
|
|
@mixin ml-container-width($container_width) {
|
|
max-width: calc($container_width + calc(calc((100% - $container_width))/2));
|
|
} |