Skip to content
This repository has been archived by the owner on Jul 29, 2020. It is now read-only.

Commit

Permalink
style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcastillo committed May 15, 2016
1 parent 98ebbd8 commit 36986b6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions src/app/dashboard.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ main {
display: flex;
}

.content {
width: 100%;
}

h1 {
padding: 20px;
font-weight: 300;
Expand Down
2 changes: 1 addition & 1 deletion src/app/dashboard.component.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<main>
<bci-filters></bci-filters>
<section>
<section class="content">
<h1>{{ title }}</h1>
<nav>
<a [routerLink]="['/time-series']">Time Series</a>
Expand Down
5 changes: 3 additions & 2 deletions src/app/frequency-band/frequency-band.component.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@

:host {
display: inline-block;
margin: 20px;
margin: 0 0 20px 20px;
padding: 20px;
box-shadow: 0 0 5px rgba(0,0,0,0.3);
background-color: #333333;
position: relative;
height: 100%;
width: 27%;
width: 47%;
overflow: hidden;
box-sizing: border-box;
}

h2 {
Expand Down

0 comments on commit 36986b6

Please sign in to comment.