Style still WIP but much better now

This commit is contained in:
Astra 2025-04-20 18:14:12 +09:00
parent bf7fbdcb67
commit 037dea4e40
Signed by: astra
SSH key fingerprint: SHA256:jQDNS75/33T59Ey4yAzrUPP/5YQaXEetsW8hwUae+ag
6 changed files with 113 additions and 61 deletions

View file

@ -6,10 +6,27 @@
::-webkit-scrollbar {
width: 0px;
background: transparent;
padding: 0;
margin: 0;
}
::-webkit-scrollbar-thumb {
background: transparent;
border-radius: 0;
}
::-webkit-scrollbar-track {
background: transparent;
border-radius: 0;
}
::-webkit-scrollbar-corner {
background: transparent;
border-radius: 0;
}
::-webkit-scrollbar-button {
background: transparent;
border-radius: 0;
}
* {
scrollbar-width: thin;
scrollbar-width: none;
scrollbar-color: transparent transparent;
-ms-overflow-style: none; /* IE and Edge */
-webkit-overflow-scrolling: touch;
@ -45,8 +62,10 @@ h1 {
#app {
max-width: 1400px;
margin: 0 auto;
padding: 2rem;
margin: 0;
padding: 0;
margin-left: auto;
margin-right: auto;
text-align: center;
}