No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search

    [Request] iPhone X support

    Framework
    2
    2
    1216
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • N
      Nicholas last edited by

      Hi!
      Wondering if we could possibly get some iPhone X support?
      At the moment, the bottom navigation overlaps the swipe-bar at the bottom.
      Could we somehow add some padding to the bottom navigation only on an iPhone X? I’m not sure if the platform detection tool is capable of reading the type of device.

      Cheers.

      1 Reply Last reply Reply Quote 0
      • A
        albeik last edited by

        For now you can do something like in your vue file that has a navigation footer bar:

        <style lang="stylus" scoped>
        @import '~variables'
        // iPhone X
        @media only screen and (max-device-width: 375px) and (max-device-height: 812px) and (-webkit-device-pixel-ratio: 3)
          footer.layout-footer
            height 84px !important
        </style>
        1 Reply Last reply Reply Quote 1
        • First post
          Last post