Skip to content

Commit

Permalink
Merge pull request #671 from mariobuikhuizen/fix_scrollbar
Browse files Browse the repository at this point in the history
fix: don't show the scrollbar in the app template
  • Loading branch information
pllim authored Jun 29, 2021
2 parents 0dbfe13 + 701d323 commit 9f0ff3e
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@

<script src="{{resources.base_url}}voila/static/require.min.js" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
<style>
/* override vuetify style which causes the scrollbar to always show */
html {
overflow-y: hidden;
}
</style>
</head>
{%- block body_header -%}
{% if resources.theme == 'dark' %}
Expand Down

0 comments on commit 9f0ff3e

Please sign in to comment.