Fix scrolling on mobile

This commit is contained in:
Andras Schmelczer 2025-07-06 16:44:44 +01:00
parent 0a41bac012
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,8 +25,9 @@
<body>
<div class="background"></div>
<div class="page-wrapper">
<header>
<div class="scroll-container">
<div class="page-wrapper">
<header>
<h1>3-Way Text Merge</h1>
<p>
The
@ -136,6 +137,7 @@
</svg>
</a>
</footer>
</div>
</div>
<noscript>JavaScript is required for this website.</noscript>

View file

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