diff --git a/src/styles/components/_index.scss b/src/styles/components/_index.scss index 369089191..99a3c5aa3 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 acf5b4a74..000000000 --- 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 d6dd95afe..2fc6f87e7 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