add: categories list

This commit is contained in:
Mahyar Khanbolooki
2025-07-07 16:19:57 +03:30
parent aca8509ad1
commit 1a6a7ef044
5 changed files with 159 additions and 6 deletions
+33
View File
@@ -71,4 +71,37 @@ input[type="password"] {
/* add spacing to better separate each image */
letter-spacing: 2px;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.noscrollbar::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.noscrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
/* width */
::-webkit-scrollbar {
width: 10px;
height: 6px;
}
/* Track */
::-webkit-scrollbar-track {
background: transparent;
}
/* Handle */
::-webkit-scrollbar-thumb {
border-radius: 12px;
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}