From 4d2c27e74e957b9c2efc76dc2156d5d42731952d Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Mon, 18 Oct 2021 14:23:18 +0200 Subject: [PATCH] feat: merge teams.scss with component styles --- src/styles/components/_index.scss | 1 - src/styles/components/teams.scss | 26 -------------------------- src/views/teams/ListTeams.vue | 29 +++++++++++++++++++++++++++++ 3 files changed, 29 insertions(+), 27 deletions(-) delete mode 100644 src/styles/components/teams.scss diff --git a/src/styles/components/_index.scss b/src/styles/components/_index.scss index 36908919..99a3c5aa 100644 --- a/src/styles/components/_index.scss +++ b/src/styles/components/_index.scss @@ -3,5 +3,4 @@ @import "list"; @import "task"; @import "tasks"; -@import "teams"; @import "namespaces"; \ No newline at end of file diff --git a/src/styles/components/teams.scss b/src/styles/components/teams.scss deleted file mode 100644 index acf5b4a7..00000000 --- a/src/styles/components/teams.scss +++ /dev/null @@ -1,26 +0,0 @@ -ul.teams { - padding: 0; - margin-left: 0; - overflow: hidden; - - li { - list-style: none; - margin: 0; - border-bottom: 1px solid $border; - - a { - color: #363636; - display: block; - padding: 0.5rem 1rem; - transition: background-color $transition; - - &:hover { - background: $grey-100; - } - } - } - - li:last-child { - border-bottom: none; - } -} \ No newline at end of file diff --git a/src/views/teams/ListTeams.vue b/src/views/teams/ListTeams.vue index d6dd95af..2fc6f87e 100644 --- a/src/views/teams/ListTeams.vue +++ b/src/views/teams/ListTeams.vue @@ -49,3 +49,32 @@ export default { }, } + + \ No newline at end of file