mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 20:42:43 +00:00
37 lines
797 B
Plaintext
37 lines
797 B
Plaintext
@import 'naturalcrit/styles/core.less';
|
|
.homebrew{
|
|
height : 100%;
|
|
.sitePage{
|
|
display : flex;
|
|
height : 100%;
|
|
background-color : @steel;
|
|
flex-direction : column;
|
|
overflow-y : hidden;
|
|
.content{
|
|
position : relative;
|
|
height : calc(~"100% - 29px"); //Navbar height
|
|
flex : auto;
|
|
overflow-y : hidden;
|
|
}
|
|
&.listPage .content {
|
|
overflow-y : scroll;
|
|
|
|
&::-webkit-scrollbar {
|
|
width: 20px;
|
|
&:horizontal{
|
|
height: 20px;
|
|
width:auto;
|
|
}
|
|
&-thumb {
|
|
background: linear-gradient(90deg, #d3c1af 15px, #00000000 15px);
|
|
&:horizontal{
|
|
background: linear-gradient(0deg, #d3c1af 15px, #00000000 15px);
|
|
}
|
|
}
|
|
&-corner {
|
|
visibility: hidden;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |