Skip to content

Commit

Permalink
Fix preferences not opening when window width < 700px (#841)
Browse files Browse the repository at this point in the history
Messenger sets `display:none` on the settings container through a media
query. We're overwriting this using `visibility:hidden` instead so we
can open the menu.
  • Loading branch information
whitecrownclown authored and sindresorhus committed Apr 9, 2019
1 parent 79fa563 commit ec44260
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion css/browser.css
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,11 @@ html.hide-dropdowns .uiContextualLayerPositioner {
}

/* Hide settings icon */
._30yy._2fug._p {
._4kzu {
visibility: hidden !important;
display: block !important;
width: 0 !important;
height: 0 !important;
}

/* Hide title */
Expand Down

0 comments on commit ec44260

Please sign in to comment.