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,8 +25,9 @@
<body> <body>
<div class="background"></div> <div class="background"></div>
<div class="page-wrapper"> <div class="scroll-container">
<header> <div class="page-wrapper">
<header>
<h1>3-Way Text Merge</h1> <h1>3-Way Text Merge</h1>
<p> <p>
The The
@ -136,6 +137,7 @@
</svg> </svg>
</a> </a>
</footer> </footer>
</div>
</div> </div>
<noscript>JavaScript is required for this website.</noscript> <noscript>JavaScript is required for this website.</noscript>

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;
} }