fix overflow on the x-axis due to some weird body issue

This commit is contained in:
ChrisplayzWii 2025-04-03 19:46:39 -05:00 committed by GitHub
parent 0d76a55915
commit 567a5b178b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,6 @@
@font-face {font-family: 'Shop'; src: url('shop.ttf') format('truetype'); font-weight: normal; font-style: normal;} @font-face {font-family: 'Shop'; src: url('shop.ttf') format('truetype'); font-weight: normal; font-style: normal;}
body {text-align: center;font-family: sans-serif;margin: 0;font-family: 'Shop',sans-serif;} body {text-align: center;font-family: sans-serif;margin: 0;font-family: 'Shop',sans-serif; overflow-x:hidden;}
div {background-color: white;border-radius: 5px;border-color: #34BEED;box-shadow: 0 0 10px #0000007c; box-sizing: border-box;border-width: 5px;border-style: solid; width: 35%; text-align: center;margin: 0 auto;padding: 5px;margin-top: 6px; overflow: auto} div {background-color: white;border-radius: 5px;border-color: #34BEED;box-shadow: 0 0 10px #0000007c; box-sizing: border-box;border-width: 5px;border-style: solid; width: 35%; text-align: center;margin: 0 auto;padding: 5px;margin-top: 6px; overflow: auto}
div.clear {border:none;background: none;box-shadow: none;} div.clear {border:none;background: none;box-shadow: none;}
header {background-color: #1164E9;width: 100%;padding: 10px;border-style: solid;border-top: white;border-right: none;border-left: none;} header {background-color: #1164E9;width: 100%;padding: 10px;border-style: solid;border-top: white;border-right: none;border-left: none;}
@ -17,4 +17,4 @@ body.dir a {color:black;text-decoration: none;}
table {border: 1px solid white; border-collapse: collapse;} table {border: 1px solid white; border-collapse: collapse;}
th, td {border: 1px solid} th, td {border: 1px solid}
@media (max-width: 768px) {div {width: 100%;}} @media (max-width: 768px) {div {width: 100%;}}