diff options
author | Allan Wang <me@allanwang.ca> | 2019-08-15 22:13:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-15 22:13:37 -0700 |
commit | 3cc5ca08fde58688810a53e83c1e866980c49ada (patch) | |
tree | 56444cfe379a491e14db26608dd7c4572aedad55 /app/src/web | |
parent | d500d1dd6e05c6128dcb15fe8e15acb2aaf979cd (diff) | |
parent | 39d07d946b753f197d200fa07792670e37435a95 (diff) | |
download | frost-3cc5ca08fde58688810a53e83c1e866980c49ada.tar.gz frost-3cc5ca08fde58688810a53e83c1e866980c49ada.tar.bz2 frost-3cc5ca08fde58688810a53e83c1e866980c49ada.zip |
Merge pull request #1505 from AllanWang/native-toggle
Native toggle
Diffstat (limited to 'app/src/web')
-rw-r--r-- | app/src/web/scss/core/_core_bg.scss | 2 | ||||
-rw-r--r-- | app/src/web/ts/menu.ts | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/app/src/web/scss/core/_core_bg.scss b/app/src/web/scss/core/_core_bg.scss index 17c93b7b..2c76cfaf 100644 --- a/app/src/web/scss/core/_core_bg.scss +++ b/app/src/web/scss/core/_core_bg.scss @@ -6,7 +6,7 @@ html, body, :root, #root, #header, #MComposer, ._1upc, input, ._2f9r, ._59e9, ._ ._5lp5, .container, .subpage, ._5n_f, #static_templates, ._22_8, ._1t4h, ._uoq, ._3qdh, ._8ca, ._3h8i, ._6-l ._2us7, ._6-l ._6-p:not([style*="background-image:"]), ._333v, div.sharerSelector, ._529j, ._305j, ._1pph, ._3t_l, ._4pvz, ._1g05, .acy, ._51-g, ._533c, ._ib-, .sharerAttachmentEmpty, .sharerBottomWrapper, ._24e1, -._3bg5 ._56do, ._5hfh, ._52e-, .mQuestionsPollResultsBar, ._5hoc, ._5oxw, ._32_4, ._1hiz, +._3bg5 ._56do, ._5hfh, ._52e-, .mQuestionsPollResultsBar, ._5hoc, ._5oxw, ._32_4, ._1hiz, ._53_-, ._38do, .bo, .cq, ._234-, ._a-5, ._2zh4, ._15ks, ._3oyc, ._36dc, ._3iyw ._3iyx, ._6bes, ._55wo, ._4-dy, .tlBody, #timelineBody, .timelineX, .timeline, .feed, .tlPrelude, .tlFeedPlaceholder, ._4_d0, .al, ._1gkq, ._5c5b, ._1qxg, ._5luf, ._2new, ._cld, ._3zvb, ._2nk0, .btnD, .btnI, ._2bdb, ._3ci9, diff --git a/app/src/web/ts/menu.ts b/app/src/web/ts/menu.ts index 6f9dbf16..b26e9cc9 100644 --- a/app/src/web/ts/menu.ts +++ b/app/src/web/ts/menu.ts @@ -20,6 +20,9 @@ return } + /* + * Required to remove height restrictions + */ const y = new MutationObserver(() => { viewport.removeAttribute('style'); root.removeAttribute('style'); |