style: custom premium scrollbar styling for plans modal

This commit is contained in:
Luis Gabriel Ramos Robles 2026-06-14 02:32:57 +00:00
parent 08fe3954a2
commit 9adc52bd03

View file

@ -292,6 +292,25 @@
gap: var(--space-6);
max-height: 90vh;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: var(--border) transparent;
}
.modal::-webkit-scrollbar {
width: 6px;
}
.modal::-webkit-scrollbar-track {
background: transparent;
}
.modal::-webkit-scrollbar-thumb {
background: var(--border);
border-radius: var(--radius-full);
}
.modal::-webkit-scrollbar-thumb:hover {
background: var(--primary);
}
.modalTitle {