Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/592e60ab79149d5de0d83fcec77feabcdc90b7d8
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
9 additions and
5 deletions
@ -7,7 +7,7 @@
< mat-card class = "mat-elevation-z8 top-margin login-card" >
< H1 * ngIf = "!customizationSettings.logo && !customizationSettings.applicationName" class = "login_logo" > OMBI< / H1 >
< H1 * ngIf = "customizationSettings.applicationName && !customizationSettings.logo" class = "login_logo custom" > {{customizationSettings.applicationName}}< / H1 >
< H1 * ngIf = "customizationSettings.applicationName && !customizationSettings.logo" [ ngClass ] = " { ' bigText ' : customizationSettings . applicationName . length > = 7 & & customizationSettings.applicationName.length < 14 , ' hugeText ' : customizationSettings . applicationName . length > = 14 }" class="login_logo custom"> {{customizationSettings.applicationName}}< / H1 >
< img mat-card-image * ngIf = "customizationSettings.logo" [ src ] = " customizationSettings . logo " >
< mat-card-content id = "login-box" * ngIf = "!authenticationSettings.enableOAuth || loginWithOmbi" >
< form * ngIf = "authenticationSettings" class = "form-signin" novalidate [ formGroup ] = " form " ( ngSubmit ) = " onSubmit ( form ) " >
@ -203,15 +203,19 @@ div.bg {
justify-content : center ;
font-weight : 700 ;
font-size : 10 em ;
& . custom {
font-size : 5 em ;
}
& . hugeText {
font-size : 3 vw ;
}
width : 100 % ;
margin-bottom : 70 px ;
}
@media ( max-width : 6 00px ) {
@media ( max-width : 7 00px ) {
. login-card H1 . login_logo {
font-size : 20 vw ;
& . hugeText {
font-size : 7 vw ;
}
}
}