removed login button in feed

master
Max 5 years ago
parent 0e553fd53f
commit ddc6d618d1

@ -30,12 +30,9 @@
<mat-card id="info"> <mat-card id="info">
<mat-card-header> <mat-card-header>
<mat-card-title > <mat-card-title >
You need no log in to post something. You need to <a routerLink="/login" class="primary-color">login</a> to post something.
</mat-card-title> </mat-card-title>
</mat-card-header> </mat-card-header>
<mat-card-content>
<a mat-stroked-button color="primary" routerLink="/login" id="post-button">Login</a>
</mat-card-content>
</mat-card> </mat-card>
</div> </div>

@ -1,5 +1,9 @@
@import '../../../styles/mixins.sass' @import '../../../styles/mixins.sass'
@import '../../../styles/vars.sass' @import '../../../styles/vars.sass'
@import 'src/styles/greenvironment-material-theme.scss';
.primary-color
color: $primary-color
#home #home
width: 100% width: 100%

@ -10,6 +10,7 @@
// (imported above). For each palette, you can optionally specify a default, lighter, and darker // (imported above). For each palette, you can optionally specify a default, lighter, and darker
// hue. Available color palettes: https://material.io/design/color/ // hue. Available color palettes: https://material.io/design/color/
$primary: mat-palette($mat-light-green); $primary: mat-palette($mat-light-green);
$primary-color: mat-color($primary);
$accent: mat-palette($mat-brown, A200, A100, A400); $accent: mat-palette($mat-brown, A200, A100, A400);
// The warn palette is optional (defaults to red). // The warn palette is optional (defaults to red).
$warn: mat-palette($mat-red); $warn: mat-palette($mat-red);

Loading…
Cancel
Save