Skip to content

Commit

Permalink
fix(ui): overlay positions on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
sentriz committed Sep 24, 2021
1 parent f1467fb commit 024028c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
</head>
<body class="overflow-y-hidden">
<div id="main" class="overflow-y-thin fixed inset-0"></div>
<div id="overlays" class="fixed inset-0 pointer-events-none"></div>
<div id="overlays" class="fixed inset-0 h-screen pointer-events-none"></div>
</body>
</html>
2 changes: 1 addition & 1 deletion web/src/components/Home.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="container h-screen p-6 mx-auto">
<div class="container min-h-screen p-6 mx-auto">
<ul class="flex overflow-x-auto">
<div class="flex flex-1 space-x-6">
<nav-item :to="{ name: 'search' }">
Expand Down

0 comments on commit 024028c

Please sign in to comment.