Fix scrolling on mobile

This commit is contained in:
Andras Schmelczer 2025-07-06 16:44:44 +01:00
commit 0ad3dee468
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
2 changed files with 9 additions and 2 deletions

View file

@ -25,6 +25,7 @@
<body> <body>
<div class="background"></div> <div class="background"></div>
<div class="scroll-container">
<div class="page-wrapper"> <div class="page-wrapper">
<header> <header>
<h1>3-Way Text Merge</h1> <h1>3-Way Text Merge</h1>
@ -137,6 +138,7 @@
</a> </a>
</footer> </footer>
</div> </div>
</div>
<noscript>JavaScript is required for this website.</noscript> <noscript>JavaScript is required for this website.</noscript>
<script inline inline-asset="index.js" inline-asset-delete></script> <script inline inline-asset="index.js" inline-asset-delete></script>

View file

@ -12,6 +12,11 @@ body {
body { body {
font-family: 'Segoe UI', Arial, sans-serif; font-family: 'Segoe UI', Arial, sans-serif;
color: #23272f; color: #23272f;
}
.scroll-container {
height: 100vh;
height: 100dvh;
overflow-y: auto; overflow-y: auto;
} }