fix: label spacing
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
Dominik Pschenitschni 2021-10-20 14:33:52 +02:00
parent ab08efbcbe
commit 499cff0c89
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
2 changed files with 11 additions and 4 deletions

View File

@ -21,8 +21,14 @@ export default {
} }
</script> </script>
<style scoped> <style lang="scss" scoped>
.label-wrapper { .label-wrapper {
display: inline; display: inline;
} }
.tag {
& + & {
margin-left: 0.5rem;
}
}
</style> </style>

View File

@ -30,7 +30,7 @@
{{ task.title }} {{ task.title }}
</span> </span>
<labels :labels="task.labels"/> <labels class="labels" :labels="task.labels"/>
<user <user
:avatar-size="27" :avatar-size="27"
:is-inline="true" :is-inline="true"
@ -252,8 +252,9 @@ export default {
flex: 0 0 10px; flex: 0 0 10px;
} }
.tag { .labels {
margin: 0 0.5rem; padding-left: 0.5rem;
padding-right: 0.5rem;
} }
.avatar { .avatar {