refactor(ui): improve action card accessibility, flex layout and scroll styling

This commit is contained in:
ginnoir
2026-06-11 21:34:46 -05:00
parent bbded8a266
commit 75273a76de
2 changed files with 42 additions and 8 deletions
+16
View File
@@ -10,3 +10,19 @@ body {
min-height: 100dvh;
background-color: #020617; /* slate-950 */
}
/* Custom Scrollbar for action columns */
.overflow-x-auto::-webkit-scrollbar {
height: 6px;
}
.overflow-x-auto::-webkit-scrollbar-track {
background: rgba(15, 23, 42, 0.3);
border-radius: 9999px;
}
.overflow-x-auto::-webkit-scrollbar-thumb {
background: rgba(100, 116, 139, 0.4);
border-radius: 9999px;
}
.overflow-x-auto::-webkit-scrollbar-thumb:hover {
background: rgba(245, 158, 11, 0.5);
}