0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

🐛 Fixed various iOS issues (#868)

closes TryGhost/Ghost#8962
- fix inability to close menu after clicking "more" in mobile quick-nav (credit @nithindavid)
- fix stories list header padding at iPhone 6S sizes
- fix horizontal scroll when menu is open
This commit is contained in:
Kevin Ansfield 2017-09-27 17:22:44 +01:00 committed by GitHub
parent 74f1470096
commit 62ef94760a
2 changed files with 2 additions and 6 deletions

View file

@ -163,12 +163,6 @@
color: var(--darkgrey);
}
@media (max-width: 400px) {
.gh-posts-list-item a {
padding: 15px;
}
}
@media (max-width: 900px) {
.gh-posts-list-item a {
padding-right: 40px;

View file

@ -314,6 +314,8 @@ body > .ember-view:not(.default-liquid-destination) {
transform: translate3d(0,0,0);
}
.mobile-menu-expanded .content-cover {
width: 20vw;
cursor: pointer;
transform: translate3d(80vw, 0, 0);
}