fix(navigation): sidebar top spacing
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kolaente 2023-06-06 17:27:05 +02:00
parent e24607ed3a
commit 5888946861
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -105,7 +105,7 @@ const favoriteProjects = computed(() => projectStore.favoriteProjects)
.menu-container { .menu-container {
background: var(--site-background); background: var(--site-background);
color: $vikunja-nav-color; color: $vikunja-nav-color;
padding: 0 0 1rem; padding: 1rem 0;
transition: transform $transition-duration ease-in; transition: transform $transition-duration ease-in;
position: fixed; position: fixed;
top: $navbar-height; top: $navbar-height;
@ -114,7 +114,6 @@ const favoriteProjects = computed(() => projectStore.favoriteProjects)
transform: translateX(-100%); transform: translateX(-100%);
overflow-x: auto; overflow-x: auto;
width: $navbar-width; width: $navbar-width;
margin-top: 1rem;
@media screen and (max-width: $tablet) { @media screen and (max-width: $tablet) {
top: 0; top: 0;