diff --git a/frontend/src/views/home/NoLoginView.vue b/frontend/src/views/home/NoLoginView.vue index 0206094..44986cf 100644 --- a/frontend/src/views/home/NoLoginView.vue +++ b/frontend/src/views/home/NoLoginView.vue @@ -212,6 +212,7 @@ export default { .actions { display: flex; flex-direction: column; + justify-content: space-between; gap: 1rem; flex: 1 1 auto; min-height: 0; @@ -220,8 +221,9 @@ export default { } .actions-panel { - flex: 0 0 40%; - max-height: 40%; + flex: 0 0 calc(40% - 0.5rem); + height: calc(40% - 0.5rem); + max-height: calc(40% - 0.5rem); min-height: 0; background: linear-gradient(180deg, rgba(255, 251, 246, 0.96) 0%, rgba(248, 240, 231, 0.96) 100%); @@ -439,10 +441,12 @@ export default { min-height: auto; height: auto; overflow: visible; + justify-content: flex-start; } .actions-panel { flex: 0 0 auto; + height: auto; max-height: none; min-height: 260px; }