From 49cc4180a7a125b9667c61ad9e92073e2abaad82 Mon Sep 17 00:00:00 2001 From: Gazook89 <58999374+Gazook89@users.noreply.github.com> Date: Tue, 20 Sep 2022 19:58:52 -0500 Subject: [PATCH] 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. --- client/homebrew/homebrew.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/client/homebrew/homebrew.less b/client/homebrew/homebrew.less index 8c8f116b5..4df6ad7cc 100644 --- a/client/homebrew/homebrew.less +++ b/client/homebrew/homebrew.less @@ -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; + // } } }