Files
crater/resources/assets/sass/components/base/base-loader/animation/_mixins.scss
Mohit Panjwani bdf2ba51d6 init crater
2019-11-11 12:16:00 +05:30

26 lines
381 B
SCSS
Vendored

@mixin global-bg() {
background-color: $primary-color;
}
@mixin global-animation() {
animation-fill-mode: both;
}
@mixin balls() {
@include global-bg();
width: $ball-size;
height: $ball-size;
border-radius: 100%;
margin: $margin;
}
@mixin lines() {
@include global-bg();
width: $line-width;
height: $line-height;
border-radius: 2px;
margin: $margin;
}