Feature: Add/Edit conversation labels (#488)

Co-authored-by: Pranav Raj S <pranavrajs@gmail.com>
This commit is contained in:
Nithin David Thomas
2020-02-16 15:46:26 +05:30
committed by GitHub
parent 77473dc2aa
commit e61ba95cf7
31 changed files with 863 additions and 323 deletions

View File

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