style(ui): replace dark hover bg from neutral-950 to neutral-900 and use RelativeDate component in UsersPage

This commit is contained in:
2026-04-22 17:30:48 -04:00
parent 52443591b2
commit e5df0e102b
7 changed files with 46 additions and 25 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ const Table = ({
);
const SkeletonRow = () => (
<tr className="hover:bg-neutral-100 dark:hover:bg-neutral-950 transition-colors">
<tr className="hover:bg-neutral-100 dark:hover:bg-neutral-900 transition-colors">
{columns.map((column, index) => (
<td key={index} className={`${sizeClasses.cell} ${column.noWrap !== false ? '' : 'whitespace-nowrap'}`}>
{column.skeleton ? (