diff options
author | Kim <1877318+kimsible@users.noreply.github.com> | 2020-04-30 22:33:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-30 22:33:27 +0200 |
commit | 0ac458bffb9389d649adcd86038385795bb6ad65 (patch) | |
tree | e99a51c893460efb649d5c8dba6ee661d44158e4 /client | |
parent | d363ef5360b479d5f494ac1559fba59b2069fe9e (diff) | |
download | PeerTube-0ac458bffb9389d649adcd86038385795bb6ad65.tar.gz PeerTube-0ac458bffb9389d649adcd86038385795bb6ad65.tar.zst PeerTube-0ac458bffb9389d649adcd86038385795bb6ad65.zip |
Remove border-bottom on header to prevent header redimensioning (#2691)
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/app.component.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/app.component.html b/client/src/app/app.component.html index 84cff4812..b0d2e5050 100644 --- a/client/src/app/app.component.html +++ b/client/src/app/app.component.html | |||
@@ -5,7 +5,7 @@ | |||
5 | <div class="peertube-container" [ngClass]="{ 'user-logged-in': isUserLoggedIn(), 'user-not-logged-in': !isUserLoggedIn() }"> | 5 | <div class="peertube-container" [ngClass]="{ 'user-logged-in': isUserLoggedIn(), 'user-not-logged-in': !isUserLoggedIn() }"> |
6 | <div class="header"> | 6 | <div class="header"> |
7 | 7 | ||
8 | <div class="top-left-block" [ngClass]="{ 'border-bottom': menu.isMenuDisplayed === false }"> | 8 | <div class="top-left-block"> |
9 | <span class="icon icon-menu" (click)="menu.toggleMenu()"></span> | 9 | <span class="icon icon-menu" (click)="menu.toggleMenu()"></span> |
10 | 10 | ||
11 | <a class="peertube-title" [routerLink]="defaultRoute" title="Homepage" i18n-title> | 11 | <a class="peertube-title" [routerLink]="defaultRoute" title="Homepage" i18n-title> |
@@ -14,7 +14,7 @@ | |||
14 | </a> | 14 | </a> |
15 | </div> | 15 | </div> |
16 | 16 | ||
17 | <div class="header-right" [ngClass]="{ 'border-bottom': menu.isMenuDisplayed === false }"> | 17 | <div class="header-right"> |
18 | <my-header class="w-100 d-flex justify-content-end"></my-header> | 18 | <my-header class="w-100 d-flex justify-content-end"></my-header> |
19 | </div> | 19 | </div> |
20 | </div> | 20 | </div> |