aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app
diff options
context:
space:
mode:
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