0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-06 01:22:44 +00:00

Snippets done

This commit is contained in:
Scott Tolksdorf
2016-05-10 22:29:00 -04:00
parent c9bfd08bb3
commit 6f6f5649d4
7 changed files with 171 additions and 209 deletions

View File

@@ -1,34 +1,26 @@
@import 'naturalcrit/styles/reset.less';
//@import 'naturalcrit/styles/elements.less';
@import 'naturalcrit/styles/animations.less';
@import 'naturalcrit/styles/colors.less';
@import 'naturalcrit/styles/tooltip.less';
html,body, #reactContainer{
min-height: 100vh;
height: 100vh;
margin: 0;
font-family : 'Open Sans', sans-serif;
height : 100vh;
min-height : 100vh;
margin : 0;
font-family : 'Open Sans', sans-serif;
}
.homebrew{
background-color: @steel;
height: 100%;
height : 100%;
background-color : @steel;
.page{
height : 100%;
display: flex;
flex-direction: column;
display : flex;
height : 100%;
flex-direction : column;
.content{
flex: auto;
position: relative;
height: calc(~"100% - 29px"); //Navbar height
position : relative;
height : calc(~"100% - 29px"); //Navbar height
flex : auto;
}
}
}