0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-29 13:22:40 +00:00

set only listPage to overflow-y scroll.

The pages are not all quite set up the same way.  /new/, /edit/, and /share/ all use an iframe and those iframes have their own scroll behavior.  /user/ doesn't have an iframe and so the `.content` portion of the page needs to scroll.
This commit is contained in:
Gazook89
2022-09-20 19:58:52 -05:00
parent 8ebfc772f3
commit 49cc4180a7

View File

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