0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-08 20:23:39 +00:00

Merge pull request #2382 from Gazook89/scroll-behavior-correction

Scroll behavior correction
This commit is contained in:
Trevor Buckner
2022-09-25 22:26:15 -04:00
committed by GitHub
2 changed files with 6 additions and 1 deletions

View File

@@ -11,6 +11,9 @@
position : relative; position : relative;
height : calc(~"100% - 29px"); //Navbar height height : calc(~"100% - 29px"); //Navbar height
flex : auto; flex : auto;
overflow-y : hidden;
}
&.listPage .content {
overflow-y : scroll; overflow-y : scroll;
} }
} }

View File

@@ -78,6 +78,8 @@
width : 100%; width : 100%;
overflow : hidden auto; overflow : hidden auto;
max-height : ~"calc(100vh - 28px)"; max-height : ~"calc(100vh - 28px)";
scrollbar-color : #666 #333;
scrollbar-width : thin;
h4{ h4{
display : block; display : block;
box-sizing : border-box; box-sizing : border-box;