Personal Website for @jaspermayone.com jaspermayone.com
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix scroll issues

+10 -1
+8 -1
src/styles/Home.module.css
··· 1 1 /* Home.module.css */ 2 + 2 3 .container { 3 4 position: relative; 4 5 height: 100vh; 5 - width: 90vw; 6 + width: 100vw; /* Set width to 100% of the viewport */ 7 + max-width: 100%; /* Ensure it doesn't go beyond the viewport width */ 8 + overflow-x: hidden; /* Prevent horizontal scroll */ 6 9 display: flex; 7 10 flex-direction: column; /* Stack children vertically */ 8 11 justify-content: center; /* Center content vertically */ 9 12 align-items: center; /* Center content horizontally */ 13 + padding: 0; /* Remove any default padding */ 14 + margin: 0; /* Remove default margin */ 10 15 } 11 16 12 17 .contentBox { 13 18 display: flex; 14 19 flex-direction: column; 15 20 align-items: left; /* Center content horizontally within the contentBox */ 21 + margin-left: 4vw; 22 + margin-right: 4vw; 16 23 } 17 24 18 25 .top {
+2
src/styles/globals.css
··· 25 25 26 26 body { 27 27 /* font-family: "Cute Notes", sans-serif; */ 28 + width: 100vw; 29 + height: 100vh; 28 30 } 29 31 30 32 @layer utilities {