fix: label spacing
This commit is contained in:
parent
87d2b4fed3
commit
2645edc9e0
2 changed files with 11 additions and 4 deletions
|
@ -21,8 +21,14 @@ export default {
|
|||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
<style lang="scss" scoped>
|
||||
.label-wrapper {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.tag {
|
||||
& + & {
|
||||
margin-left: 0.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
|
@ -30,7 +30,7 @@
|
|||
{{ task.title }}
|
||||
</span>
|
||||
|
||||
<labels :labels="task.labels"/>
|
||||
<labels class="labels" :labels="task.labels"/>
|
||||
<user
|
||||
:avatar-size="27"
|
||||
:is-inline="true"
|
||||
|
@ -252,8 +252,9 @@ export default {
|
|||
flex: 0 0 10px;
|
||||
}
|
||||
|
||||
.tag {
|
||||
margin: 0 0.5rem;
|
||||
.labels {
|
||||
padding-left: 0.5rem;
|
||||
padding-right: 0.5rem;
|
||||
}
|
||||
|
||||
.avatar {
|
||||
|
|
Loading…
Reference in a new issue