mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 16:22:44 +00:00
With the style panel we added a `page` css class alongside the `phb` and `phb3` classes so users can write CSS that targets all pages no matter the base CSS loaded. This wasn't applied to the print page. Funnily enough, the rest of the site uses `.page` just to display the website, and I didn't realize there was a conflict until now because otherwise, the brew is usually hidden in an iFrame.
16 lines
329 B
Plaintext
16 lines
329 B
Plaintext
@import 'naturalcrit/styles/core.less';
|
|
.homebrew{
|
|
height : 100%;
|
|
.sitePage{
|
|
display : flex;
|
|
height : 100%;
|
|
background-color : @steel;
|
|
flex-direction : column;
|
|
.content{
|
|
position : relative;
|
|
height : calc(~"100% - 29px"); //Navbar height
|
|
flex : auto;
|
|
}
|
|
}
|
|
}
|