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
3 changed files with 23 additions and 22 deletions
Showing only changes of commit 4a9a03b37b - Show all commits

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>