Add padding bottom to main container

pull/2567/head
Chocobozzz 2020-03-18 10:11:59 +01:00
parent d2cc8e797b
commit fad0759cab
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 5 additions and 9 deletions

View File

@ -2,7 +2,7 @@
<my-hotkeys-cheatsheet></my-hotkeys-cheatsheet>
<div [ngClass]="{ 'user-logged-in': isUserLoggedIn(), 'user-not-logged-in': !isUserLoggedIn() }">
<div class="peertube-container" [ngClass]="{ 'user-logged-in': isUserLoggedIn(), 'user-not-logged-in': !isUserLoggedIn() }">
<div class="header">
<div class="top-left-block" [ngClass]="{ 'border-bottom': menu.isMenuDisplayed === false }">

View File

@ -1,6 +1,10 @@
@import '_variables';
@import '_mixins';
.peertube-container {
padding-bottom: 20px;
}
.main-row {
min-height: calc(100vh - #{$header-height} - #{$footer-height} - #{$footer-margin});
}
@ -84,11 +88,3 @@
flex: 1;
}
}
footer {
padding: 10px 0;
font-size: 11px;
margin-top: $footer-margin;
height: $footer-height;
justify-content: center;
}