Skip to content

Commit

Permalink
fix(scroll): restore max size, adds overflow hidden instead
Browse files Browse the repository at this point in the history
  • Loading branch information
dvcol committed Apr 8, 2024
1 parent 0fa6924 commit 39cb337
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/pages/popup/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,13 @@
</html>

<style>
html {
overflow: hidden;
}

#synology-download-popup-app-container {
width: 785px;
max-width: 785px;
width: 800px;
max-width: 800px;
height:600px;
max-height: 600px;
overflow: hidden;
Expand Down

0 comments on commit 39cb337

Please sign in to comment.