Skip to content

Commit

Permalink
fix: fix home container issue
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Apr 18, 2020
1 parent c6f420a commit 3367266
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/app.component.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="ledge-app" [ngClass]="isHome() ? 'app-header' : ''">
<mat-toolbar color="accent">
<div class="ledge-app">
<mat-toolbar color="accent" [ngClass]="isHome() ? 'app-header' : ''">
<mat-toolbar-row>
<button mat-button class="button-logo" routerLink="/home">
<img src="/assets/images/logo.svg" alt="logo" class="logo">
Expand Down
4 changes: 3 additions & 1 deletion src/app/presentation/home/home.component.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
@import '../../../styles/color';

.home-container {
height: calc(100vh - 66px);
position: relative;
z-index: 100;
top: 64px;

a {
text-decoration: none;
Expand Down

0 comments on commit 3367266

Please sign in to comment.