mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 18:32:41 +00:00
- Updates Vitreum to v6.0.1 + some custom fixes.
- Stylesheets must be imported with `require('./sheet.less');` but can also can now share stylesheets between jsx components.
- Should eliminate a lot of security concerns with older nested dependencies.
- Changed a lot of files to make this work
- Also removes dependency on PicoRouter in favor of React-Router
16 lines
325 B
Plaintext
16 lines
325 B
Plaintext
@import 'naturalcrit/styles/core.less';
|
|
.homebrew{
|
|
height : 100%;
|
|
.page{
|
|
display : flex;
|
|
height : 100%;
|
|
background-color : @steel;
|
|
flex-direction : column;
|
|
.content{
|
|
position : relative;
|
|
height : calc(~"100% - 29px"); //Navbar height
|
|
flex : auto;
|
|
}
|
|
}
|
|
}
|