fix scroll
All checks were successful
Build craisin-cove / build (push) Successful in 5s

This commit is contained in:
2025-11-30 17:11:43 -08:00
parent 5d98b71f27
commit 2bc164718f
2 changed files with 39 additions and 29 deletions

View File

@@ -28,6 +28,8 @@ h2{
background-color: #FA8080; background-color: #FA8080;
border-radius: 5vw; border-radius: 5vw;
overflow-y: hidden;
} }
#content > * { #content > * {
@@ -36,11 +38,17 @@ h2{
} }
#scroller{
height: 80vh;
overflow-y: scroll;
}
#content { #content {
margin: 0px; margin: 0px;
padding: 5vw; padding: 5vw;
overflow-y: scroll;
} }

View File

@@ -12,6 +12,7 @@
<body> <body>
<div id="foreground"> <div id="foreground">
<div id="scroller">
<div id="content"> <div id="content">
<img id="pfp" src="/static/pfp.png"> <img id="pfp" src="/static/pfp.png">
<h1 id="title">@craisin</h1><br> <h1 id="title">@craisin</h1><br>
@@ -48,6 +49,7 @@
</ul> </ul>
</div> </div>
</div> </div>
</div>
</body> </body>
</html> </html>