More work on React components

This commit is contained in:
Davide Passoni
2024-04-09 18:12:05 +02:00
parent 8e9e6749db
commit 45e290d656
33 changed files with 528 additions and 500 deletions

View File

@@ -0,0 +1,29 @@
/* width */
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #FFFFFFAA;
border-radius: 10px;
cursor: pointer;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
-ms-overflow-style: none;
/* IE and Edge */
scrollbar-width: none;
/* Firefox */
}