Files
mixtape/zero.Backoffice.UI/app/components/ui-loading.vue
T
2021-12-07 15:59:29 +01:00

50 lines
821 B
Vue

<template>
<i class="ui-loading" :class="{'is-big': isBig }"></i>
</template>
<script lang="ts">
export default {
props: {
isBig: {
type: Boolean,
default: false
}
}
}
</script>
<style lang="scss">
.ui-loading
{
display: inline-block;
width: 28px;
height: 28px;
border-radius: 40px;
//border: 2px solid var(--color-box);
//border-left-color: var(--color-text);
border: 2px solid transparent;
border-left-color: black;
will-change: transform;
animation: loadingRotation 0.8s linear infinite;
&.is-big
{
width: 36px;
height: 36px;
border-width: 2px;
}
}
@keyframes loadingRotation
{
0%
{
transform: rotate(0)
}
100%
{
transform: rotate(1turn)
}
}
</style>