Fix footer on bisq
This commit is contained in:
parent
f5d311ca44
commit
a4bf545993
@ -105,7 +105,6 @@
|
||||
</ng-container>
|
||||
</div>
|
||||
|
||||
<app-global-footer></app-global-footer>
|
||||
</div>
|
||||
|
||||
<ng-template #loadingTmpl>
|
||||
|
@ -84,4 +84,6 @@
|
||||
|
||||
<router-outlet></router-outlet>
|
||||
|
||||
<app-global-footer></app-global-footer>
|
||||
|
||||
<br>
|
||||
|
@ -17,6 +17,12 @@ li.nav-item {
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
footer > .container-fluid {
|
||||
padding-bottom: 35px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.navbar {
|
||||
padding: 0rem 2rem;
|
||||
|
@ -17,6 +17,7 @@ export class BisqMasterPageComponent implements OnInit {
|
||||
isMobile = window.innerWidth <= 767.98;
|
||||
urlLanguage: string;
|
||||
networkPaths: { [network: string]: string };
|
||||
footerVisible = false;
|
||||
|
||||
constructor(
|
||||
private stateService: StateService,
|
||||
@ -31,6 +32,9 @@ export class BisqMasterPageComponent implements OnInit {
|
||||
this.urlLanguage = this.languageService.getLanguageForUrl();
|
||||
this.navigationService.subnetPaths.subscribe((paths) => {
|
||||
this.networkPaths = paths;
|
||||
if( paths.bisq === "" ) {
|
||||
this.footerVisible = true;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -1147,7 +1147,7 @@ th {
|
||||
display: none;
|
||||
}
|
||||
|
||||
app-master-page, app-liquid-master-page {
|
||||
app-master-page, app-liquid-master-page, app-bisq-master-page {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
|
Loading…
x
Reference in New Issue
Block a user