From f7c7ea50eb6d4302bdfb3913369b2fd12c64c1b3 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Mon, 18 Oct 2021 14:22:24 +0200 Subject: [PATCH] feat: merge table-view.scss with component styles --- src/styles/components/_index.scss | 1 - src/styles/components/table-view.scss | 21 --------------------- src/views/list/views/Table.vue | 23 +++++++++++++++++++++++ 3 files changed, 23 insertions(+), 22 deletions(-) delete mode 100644 src/styles/components/table-view.scss diff --git a/src/styles/components/_index.scss b/src/styles/components/_index.scss index ec89c689..986d186b 100644 --- a/src/styles/components/_index.scss +++ b/src/styles/components/_index.scss @@ -5,5 +5,4 @@ @import "taskRelations"; @import "tasks"; @import "teams"; -@import "table-view"; @import "namespaces"; \ No newline at end of file diff --git a/src/styles/components/table-view.scss b/src/styles/components/table-view.scss deleted file mode 100644 index e89ffd28..00000000 --- a/src/styles/components/table-view.scss +++ /dev/null @@ -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; - } - } -} - diff --git a/src/views/list/views/Table.vue b/src/views/list/views/Table.vue index 8a5f8605..f359a5d1 100644 --- a/src/views/list/views/Table.vue +++ b/src/views/list/views/Table.vue @@ -304,3 +304,26 @@ export default { }, } + + \ No newline at end of file