BulmaTemplates / bulma-templates

free flexbox templates built with the bulma css framework

Home Page:https://bulmatemplates.github.io/bulma-templates/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Login template issue with height in Safari

chvanikoff opened this issue · comments

commented

In a login template there's a tiny vertical scroll and empty space at the bottom appearing when using Safari. In Chrome everything is fine.
bug screenshoted

Had the same problem with firefox. Probably not the best solution but this is how i fixed it:

    @media screen and (max-height: 650px) {
      body {
        overflow-x: hidden;
        overflow-y: scroll;
      }
    }

    @media screen and (min-height: 651px) {
      body {
        overflow-x: hidden;
        overflow-y: hidden;
      }
    }

This will be fixed in an upcoming release.

That template is now deprecated with the release of the newer versions, if you encounter any issues with the newer templates please open a new issue.