diff options
| author | Shpuld Shpludson <shp@cock.li> | 2019-08-08 10:10:23 +0000 |
|---|---|---|
| committer | Shpuld Shpludson <shp@cock.li> | 2019-08-08 10:10:23 +0000 |
| commit | 74cf60109417b7480f62010567d5aa8cbb797ef9 (patch) | |
| tree | 392dbd1991084f38e7cfb7afc48705927cd9d823 /src/components/mobile_post_status_modal | |
| parent | 92380652feb83c6a4dde5ca3bac35ff4b409fa2d (diff) | |
| parent | 32b4d4d223e833e25b53d98a61f71f56142d67ab (diff) | |
Merge branch '627' into 'develop'
Fix "Post status modal disappearing on mobile landscape mode"
Closes #627
See merge request pleroma/pleroma-fe!899
Diffstat (limited to 'src/components/mobile_post_status_modal')
| -rw-r--r-- | src/components/mobile_post_status_modal/mobile_post_status_modal.vue | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/components/mobile_post_status_modal/mobile_post_status_modal.vue b/src/components/mobile_post_status_modal/mobile_post_status_modal.vue index 5db7584b..b6d7d3ba 100644 --- a/src/components/mobile_post_status_modal/mobile_post_status_modal.vue +++ b/src/components/mobile_post_status_modal/mobile_post_status_modal.vue @@ -34,14 +34,19 @@ @import '../../_variables.scss'; .post-form-modal-view { - max-height: 100%; - display: block; + align-items: flex-start; } .post-form-modal-panel { flex-shrink: 0; - margin: 25% 0 4em 0; + margin-top: 25%; + margin-bottom: 2em; width: 100%; + max-width: 700px; + + @media (orientation: landscape) { + margin-top: 8%; + } } .new-status-button { |
