frontend: remove min-height from room access container and add height and overflow to page container

This commit is contained in:
Carlos Santos 2025-07-30 16:40:55 +02:00
parent 583941fbd9
commit 1915feeee6
2 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,6 @@
.room-access-container { .room-access-container {
@include ov-container; @include ov-container;
@include ov-page-content; @include ov-page-content;
min-height: 100vh;
padding-top: var(--ov-meet-spacing-xxl); padding-top: var(--ov-meet-spacing-xxl);
background: var(--ov-meet-background-color); background: var(--ov-meet-background-color);
gap: 0; gap: 0;

View File

@ -1004,6 +1004,8 @@
// === PAGE STRUCTURE UTILITIES === // === PAGE STRUCTURE UTILITIES ===
.ov-page-container { .ov-page-container {
height: 100%;
overflow: auto;
button { button {
@include ov-button-base; @include ov-button-base;
} }