]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Add padding bottom to main container
authorChocobozzz <me@florianbigard.com>
Wed, 18 Mar 2020 09:11:59 +0000 (10:11 +0100)
committerChocobozzz <me@florianbigard.com>
Wed, 18 Mar 2020 09:11:59 +0000 (10:11 +0100)
client/src/app/app.component.html
client/src/app/app.component.scss

index b86b94e8cc2300266b57754513262ba18265411a..d1eb1646f58321a63b80b0ca658462b16784af52 100644 (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 }">
index f1b49a1e29aeb6abd9c34023059fb2544fce1aa5..0c33dc4a12b1807b6487ad7316c109748854d57a 100644 (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});
 }
     flex: 1;
   }
 }
-
-footer {
-  padding: 10px 0;
-  font-size: 11px;
-  margin-top: $footer-margin;
-  height: $footer-height;
-  justify-content: center;
-}