diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/app.component.html | 6 | ||||
-rw-r--r-- | client/src/app/app.component.scss | 11 |
2 files changed, 14 insertions, 3 deletions
diff --git a/client/src/app/app.component.html b/client/src/app/app.component.html index 3f946d581..deccb2810 100644 --- a/client/src/app/app.component.html +++ b/client/src/app/app.component.html | |||
@@ -1,9 +1,9 @@ | |||
1 | <div class="container-fluid"> | 1 | <div class="container-fluid"> |
2 | <div class="row"> | 2 | <div class="row"> |
3 | <div class="col-md-2 col-sm-3 col-xs-3 title-menu-left"> | 3 | <div class="col-md-2 col-sm-3 col-xs-3 title-menu-left"> |
4 | <h4 id="peertube-title" class="title-menu-left-block header"> | 4 | <div id="peertube-title" class="title-menu-left-block header"> |
5 | <a [routerLink]="['/videos/list']">PeerTube</a> | 5 | <a [routerLink]="['/videos/list']" title="Homepage"></a> |
6 | </h4> | 6 | </div> |
7 | 7 | ||
8 | <div class="title-menu-left-block menu"> | 8 | <div class="title-menu-left-block menu"> |
9 | <my-menu *ngIf="isInAdmin() === false"></my-menu> | 9 | <my-menu *ngIf="isInAdmin() === false"></my-menu> |
diff --git a/client/src/app/app.component.scss b/client/src/app/app.component.scss index 2d0487cd8..f11552ef6 100644 --- a/client/src/app/app.component.scss +++ b/client/src/app/app.component.scss | |||
@@ -19,8 +19,19 @@ | |||
19 | margin-top: 0; | 19 | margin-top: 0; |
20 | margin-bottom: 0; | 20 | margin-bottom: 0; |
21 | 21 | ||
22 | display: flex; | ||
23 | flex-direction: column; | ||
24 | justify-content: center; | ||
25 | text-align: center; | ||
26 | |||
22 | a { | 27 | a { |
23 | color: inherit !important; | 28 | color: inherit !important; |
29 | display: block; | ||
30 | background: url(/client/assets/logo.png) no-repeat; | ||
31 | background-size: contain; | ||
32 | width: 180px; | ||
33 | height: 22px; | ||
34 | margin: auto; | ||
24 | 35 | ||
25 | &:hover { | 36 | &:hover { |
26 | color: inherit !important; | 37 | color: inherit !important; |