From 2060eea09fdbc6111f510d292f14bf438e811616 Mon Sep 17 00:00:00 2001 From: Patrick Gebhardt Date: Thu, 25 Jun 2020 13:08:24 +0200 Subject: [PATCH] Add share button to side-nav --- frontend/src/app/app.component.html | 31 ++++++++++++++++------------- frontend/src/app/app.component.scss | 11 +++++++++- 2 files changed, 27 insertions(+), 15 deletions(-) diff --git a/frontend/src/app/app.component.html b/frontend/src/app/app.component.html index afbc3a3..3f8791d 100644 --- a/frontend/src/app/app.component.html +++ b/frontend/src/app/app.component.html @@ -4,21 +4,24 @@ Travopti logo - + -
- - home - Home - - - bookmark - Your bookmarks - - - group - About us - + diff --git a/frontend/src/app/app.component.scss b/frontend/src/app/app.component.scss index d871714..fc2a145 100644 --- a/frontend/src/app/app.component.scss +++ b/frontend/src/app/app.component.scss @@ -24,11 +24,14 @@ .drawer { flex: 1 1 auto; + display: flex; + flex-direction: column; + height: 100%; .side-nav { + flex: 1 1 auto; display: flex; flex-direction: column; - height: 100%; min-width: 12.5vw; box-sizing: border-box; padding: 1rem 0; @@ -50,6 +53,12 @@ } } } + + .feedback { + margin: 1rem; + text-align: center; + color: gray; + } } .content {