1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00

added style override #153

This commit is contained in:
Ivar 2016-09-13 22:28:23 +02:00 committed by Ivar Conradi Østhus
parent 88cbfc2881
commit f439c6d0de
3 changed files with 13 additions and 1 deletions

View File

@ -1,6 +1,7 @@
import React, { Component } from 'react';
import { Layout, Panel, NavDrawer } from 'react-toolbox';
import { AppBar, IconButton } from 'react-toolbox';
import style from './style'
import Navigation from './Navigation';
@ -15,7 +16,7 @@ export default class App extends Component {
render () {
return (
<div>
<div className={style.container}>
<AppBar>
<IconButton icon="menu" onClick={ this.toggleDrawerActive }/>
</AppBar>

View File

@ -0,0 +1,8 @@
.container {
height: auto;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}

View File

@ -24,4 +24,7 @@ body {
margin: 0;
border: 0;
outline: 0;
}