0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-26 18:12:40 +00:00
Files
homebrewery/client/homebrew/homebrew.less
Víctor Losada Hernández d0000cee11 linting
2024-03-08 10:13:04 +01:00

28 lines
617 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;
}
&::-webkit-scrollbar-thumb {
width:20px;
background: linear-gradient(90deg, #d3c1af 15px, #00000000 15px);
}
}
}
}