diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 18d02d00d..ad0be1845 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -6,6 +6,7 @@ - Keep note open when transitioning to small screen in focus mode [#1763](https://github.com/Automattic/simplenote-electron/pull/1763) ### Fixes +- Makes settings scrollable on shorter smaller view ports [#1767](https://github.com/Automattic/simplenote-electron/pull/1767) ### Other Changes diff --git a/lib/components/tab-panels/style.scss b/lib/components/tab-panels/style.scss index 7f6300388..a641c53f0 100644 --- a/lib/components/tab-panels/style.scss +++ b/lib/components/tab-panels/style.scss @@ -27,12 +27,6 @@ height: 30.5em; overflow: auto; -webkit-overflow-scrolling: touch; - - // On small screens, the tab bar uses up too much space so it should - // move out of the way while scrolling. - @media only screen and (max-width: 720px) and (max-height: 640px) { - height: auto; - } } .tab-panels__column { @@ -40,4 +34,3 @@ margin: 0 auto; padding: 36px 10px 50px; } -