import product catalogue

This commit is contained in:
2026-07-16 17:05:06 +05:30
parent 8a1527cef8
commit 11baf732b7
35 changed files with 2722 additions and 1513 deletions

View File

@@ -82,3 +82,25 @@
/* orange */
--color-orange-850: color-mix(in oklab, #9a3412, #7c2d12);
}
/* Custom scrollbar utility */
@layer utilities {
.custom-scrollbar::-webkit-scrollbar {
width: 4px;
height: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background-color: var(--color-slate-350, #cbd5e1);
border-radius: 20px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background-color: var(--color-slate-450, #94a3b8);
}
.custom-scrollbar {
scrollbar-width: thin;
scrollbar-color: var(--color-slate-350, #cbd5e1) transparent;
}
}