mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-29 12:41:10 -04:00
26 lines
381 B
SCSS
Vendored
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;
|
|
}
|