Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/app/core/header/header.component.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<header>
<nav>
<div fxFlex fxLayout="row" fxLayout.xs="column" fxLayoutAlign="center center">
<div fxFlex="40" fxLayout.xs="row" fxLayoutAlign="left right">
<div fxFlex="50" fxLayout.xs="row" fxLayoutAlign="left right">
<a mat-raised-button *ngFor="let item of menuItems" routerLink="{{item.link}}">
{{item.name | uppercase}}
</a>
</div>
<div fxFlex="20" id="today" class="text-center">
<div fxFlex="10" id="today">
<span ng-show="title || false" class="title">{{ title }}</span>
</div>
<div fxFlex="40" class="text-right">
Expand Down
16 changes: 12 additions & 4 deletions src/app/core/header/header.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,6 @@
> div {
margin-top: 1em;
}

#today {
margin-top: 2em;
}
}
}
}
Expand All @@ -79,6 +75,18 @@
}
}

@media (max-width:599px){
:host(app-header) {
header {
nav {
#today{
margin-top: 1em;
}
}
}
}
}

@media (max-width: 425px) {
:host(app-nav) {
padding-bottom: 0;
Expand Down