1
0

feat: divide most list.scss styles into components

- list-card.vue and the Home.vue
- listSearch.vue
- topNavigation.vue
- EditTeam.vue
- List.vue
- ShowList.vue
This commit is contained in:
Dominik Pschenitschni
2021-10-18 14:21:02 +02:00
parent 4d15f7ae98
commit 87f7a515a6
9 changed files with 206 additions and 200 deletions

View File

@ -141,3 +141,15 @@ export default {
},
}
</script>
<style lang="scss" scoped>
.list-cards-wrapper-2-rows {
flex-wrap: wrap;
max-height: calc(#{$list-height * 2} + #{$list-spacing * 2} - 4px);
overflow: hidden;
@media screen and (max-width: $mobile) {
max-height: calc(#{$list-height * 4} + #{$list-spacing * 4} - 4px);
}
}
</style>