Skip to content

Commit

Permalink
Adds header for app. (refs #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
doomsayer2 committed Apr 18, 2017
1 parent 04fd2cb commit a03a8eb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export class App implements MAppViews {
];

constructor(parent:Element) {
d3.select('#app').append('div').attr('id', '#validHeader');
this.$node = d3.select(parent);

this.$node.append('div').classed('dataLoadingView', true);
Expand Down
6 changes: 6 additions & 0 deletions src/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,9 @@
.dataVizView {

}

.validHeader {
position: fixed;
z-index: 100000;
width: 100%;
}

0 comments on commit a03a8eb

Please sign in to comment.