diff options
Diffstat (limited to 'client/src/app/app.component.scss')
-rw-r--r-- | client/src/app/app.component.scss | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/client/src/app/app.component.scss b/client/src/app/app.component.scss index e69de29bb..dc4dcf28b 100644 --- a/client/src/app/app.component.scss +++ b/client/src/app/app.component.scss | |||
@@ -0,0 +1,39 @@ | |||
1 | .title-menu-left { | ||
2 | height: calc(100vh - #{$header-height}); | ||
3 | padding-right: 0; | ||
4 | |||
5 | .title-menu-left-block { | ||
6 | margin-left: -15px; | ||
7 | |||
8 | &.menu { | ||
9 | height: 100%; | ||
10 | } | ||
11 | } | ||
12 | |||
13 | #peertube-title { | ||
14 | background-color: #fff; | ||
15 | border-right: 1px solid $header-border-color; | ||
16 | font-size: 25px; | ||
17 | line-height: $header-height; | ||
18 | text-align: center; | ||
19 | margin-top: 0; | ||
20 | margin-bottom: 0; | ||
21 | |||
22 | a { | ||
23 | color: inherit !important; | ||
24 | |||
25 | &:hover { | ||
26 | color: inherit !important; | ||
27 | text-decoration: none !important; | ||
28 | } | ||
29 | } | ||
30 | } | ||
31 | } | ||
32 | |||
33 | footer { | ||
34 | border-top: 1px solid rgba(0, 0, 0, 0.2); | ||
35 | padding: 10px; | ||
36 | text-align: center; | ||
37 | font-size: small; | ||
38 | margin: 30px 10px 0 10px; | ||
39 | } | ||