Revert "Updates sidebar on dashboard"

This reverts commit 6186d14593.
This commit is contained in:
Sojan 2020-02-11 19:34:42 +05:30
parent 6186d14593
commit 2023d5d42b
20 changed files with 112 additions and 394 deletions

View file

@ -1,16 +1,7 @@
<template>
<span class="spinner" :class="size"></span>
<span class="spinner small"></span>
</template>
<script>
export default {
props: {
size: {
type: String,
default: 'small',
},
},
};
</script>
<style scoped lang="scss">
@import '~widget/assets/scss/variables';
@ -48,7 +39,7 @@ export default {
vertical-align: middle;
&.message {
padding: $space-one;
padding: $space-normal;
top: 0;
left: 0;
margin: 0 auto;
@ -72,17 +63,5 @@ export default {
margin-top: -$space-small;
}
}
&.tiny {
width: $space-one;
height: $space-one;
padding: 0 $space-smaller;
&:before {
width: $space-one;
height: $space-one;
margin-top: -$space-small + $space-micro;
}
}
}
</style>