feat: merge table-view.scss with component styles

This commit is contained in:
Dominik Pschenitschni 2021-10-18 14:22:24 +02:00
parent 07b4780912
commit 4a9a03b37b
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
3 changed files with 23 additions and 22 deletions

View File

@ -5,5 +5,4 @@
@import "taskRelations";
@import "tasks";
@import "teams";
@import "table-view";
@import "namespaces";

View File

@ -1,21 +0,0 @@
.table-view {
.table {
background: transparent;
overflow-x: auto;
overflow-y: hidden;
th {
white-space: nowrap;
}
.user {
margin: 0;
}
.is-done {
font-size: .9rem;
margin: 0;
}
}
}

View File

@ -304,3 +304,26 @@ export default {
},
}
</script>
<style lang="scss" scoped>
.table-view {
.table {
background: transparent;
overflow-x: auto;
overflow-y: hidden;
th {
white-space: nowrap;
}
.user {
margin: 0;
}
.is-done {
font-size: .9rem;
margin: 0;
}
}
}
</style>