From: Chocobozzz Date: Wed, 18 Mar 2020 09:11:59 +0000 (+0100) Subject: Add padding bottom to main container X-Git-Tag: v2.2.0-rc.1~361 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=fad0759cab414731060733df74d4244a13b543e1;hp=d2cc8e797bc4681765254931ebcdbbb9af0a146a;p=github%2FChocobozzz%2FPeerTube.git Add padding bottom to main container --- diff --git a/client/src/app/app.component.html b/client/src/app/app.component.html index b86b94e8c..d1eb1646f 100644 --- a/client/src/app/app.component.html +++ b/client/src/app/app.component.html @@ -2,7 +2,7 @@ -
+
diff --git a/client/src/app/app.component.scss b/client/src/app/app.component.scss index f1b49a1e2..0c33dc4a1 100644 --- a/client/src/app/app.component.scss +++ b/client/src/app/app.component.scss @@ -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; -}