aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-01-31 11:58:11 +0100
committerChocobozzz <me@florianbigard.com>2018-01-31 11:58:11 +0100
commitdd7789417181d202061ce5f693f1f72ab8d243c3 (patch)
tree48dd8f78a51ab3c62d818f17b3fa6bd298c61d05 /client/src/app
parent1f788f2044928325e48c5d88ecbc72501873558e (diff)
downloadPeerTube-dd7789417181d202061ce5f693f1f72ab8d243c3.tar.gz
PeerTube-dd7789417181d202061ce5f693f1f72ab8d243c3.tar.zst
PeerTube-dd7789417181d202061ce5f693f1f72ab8d243c3.zip
Fix responsive with modale and menu displayed
Diffstat (limited to 'client/src/app')
-rw-r--r--client/src/app/app.component.ts4
-rw-r--r--client/src/app/header/header.component.scss4
2 files changed, 6 insertions, 2 deletions
diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts
index d2678096f..55c7bbf99 100644
--- a/client/src/app/app.component.ts
+++ b/client/src/app/app.component.ts
@@ -1,5 +1,5 @@
1import { Component, OnInit } from '@angular/core' 1import { Component, OnInit } from '@angular/core'
2import { NavigationEnd, Router } from '@angular/router' 2import { GuardsCheckStart, NavigationEnd, Router } from '@angular/router'
3import { AuthService, ServerService } from '@app/core' 3import { AuthService, ServerService } from '@app/core'
4import { isInMobileView } from '@app/shared/misc/utils' 4import { isInMobileView } from '@app/shared/misc/utils'
5 5
@@ -57,7 +57,7 @@ export class AppComponent implements OnInit {
57 this.router.events.subscribe( 57 this.router.events.subscribe(
58 e => { 58 e => {
59 // User clicked on a link in the menu, change the page 59 // User clicked on a link in the menu, change the page
60 if (e instanceof NavigationEnd && isInMobileView()) { 60 if (e instanceof GuardsCheckStart && isInMobileView()) {
61 this.isMenuDisplayed = false 61 this.isMenuDisplayed = false
62 } 62 }
63 } 63 }
diff --git a/client/src/app/header/header.component.scss b/client/src/app/header/header.component.scss
index d589d66c9..63b724cba 100644
--- a/client/src/app/header/header.component.scss
+++ b/client/src/app/header/header.component.scss
@@ -37,6 +37,10 @@
37 37
38 margin-right: 25px; 38 margin-right: 25px;
39 39
40 @media screen and (max-width: 800px) {
41 margin-right: 0;
42 }
43
40 .icon.icon-upload { 44 .icon.icon-upload {
41 @include icon(22px); 45 @include icon(22px);
42 46