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 29 additions and 27 deletions
Showing only changes of commit bfeadde0a6 - Show all commits

View File

@ -3,5 +3,4 @@
@import "list";
@import "task";
@import "tasks";
@import "teams";
@import "namespaces";

View File

@ -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;
}
}

View File

@ -49,3 +49,32 @@ export default {
},
}
</script>
<style lang="scss" scoped>
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;
}
}
</style>