chore: only apply padding where needed
Some checks failed
continuous-integration/drone/pr Build is failing

This commit is contained in:
kolaente 2023-04-01 21:52:52 +02:00
parent 8a3e88528b
commit 1416a6852c
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 12 additions and 16 deletions

View File

@ -24,7 +24,7 @@ const favoriteProjects = computed(() => projectStore.favoriteProjects
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.menu { .menu + .menu{
padding-top: math.div($navbar-padding, 2); padding-top: math.div($navbar-padding, 2);
} }
</style> </style>

View File

@ -112,23 +112,19 @@ const menuActive = computed(() => baseStore.menuActive)
} }
} }
.top-menu { .top-menu .menu-list {
margin-top: math.div($navbar-padding, 2); li {
font-weight: 600;
font-family: $vikunja-font;
}
.menu-list { .list-menu-link,
li { li > a {
font-weight: 600; padding-left: 2rem;
font-family: $vikunja-font; display: inline-block;
}
.list-menu-link, .icon {
li > a { padding-bottom: .25rem;
padding-left: 2rem;
display: inline-block;
.icon {
padding-bottom: .25rem;
}
} }
} }
} }