feature/move-styles-to-components #874

Merged
konrad merged 45 commits from dpschen/frontend:feature/move-styles-to-components into main 2021-10-21 19:11:18 +00:00
2 changed files with 11 additions and 4 deletions
Showing only changes of commit 499cff0c89 - Show all commits

View File

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

View File

@ -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 {