Update landingpage.component.html To Page Scrolling. (#5127)

This commit is contained in:
Joel Samson 2024-07-08 11:31:53 -04:00 committed by GitHub
commit 0db5928600
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 3 deletions

View file

@ -1,4 +1,4 @@
<div *ngIf="landingPageSettings && customizationSettings" style="overflow:hidden">
<div *ngIf="landingPageSettings && customizationSettings" style="overflow: auto !important;">
<ombi-image-background></ombi-image-background>
<div class="small-middle-container">

View file

@ -1,9 +1,11 @@
@import "./styles/variables.scss";
@import "./styles/variables.scss";
.small-middle-container{
height:100vh;
overflow: auto; /* or overflow: auto; */
}
.row{
overflow: auto; /* or overflow: auto; */
display:flex;
align-items: center;
justify-content: center;
@ -87,4 +89,4 @@ span, b, i, p {
.logo-container{
display:flex;
justify-content: center;
}
}