mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-10 15:47:32 +00:00
11 lines
315 B
SCSS
11 lines
315 B
SCSS
.loading {
|
|
position: relative;
|
|
display: block;
|
|
width: 1.4em;
|
|
height: 1.4em;
|
|
border-radius: 50%;
|
|
border: 0.25em solid;
|
|
border-color: $color-primary-500 transparent $color-primary-500 transparent;
|
|
animation: spin infinite 1800ms;
|
|
animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
|
|
}
|