Files
Vari f8d1f3acdc Small Finishing changes to the Pak manager admin tool.
Changed frontend to new frontend stuff and deleted old components.

Cleaned up some code in the file manager admin tool.
2024-08-16 00:01:06 +02:00

27 lines
631 B
SCSS

table {
@apply w-full rounded-xl;
thead {
@apply sticky top-0 text-gray-900 dark:text-gray-500 bg-slate-400 dark:bg-gray-900 rounded-xl;
th {
@apply text-sm uppercase py-2 first:pl-3 last:pr-3 px-1 sm:px-3 default:text-left ;
}
}
tbody tr {
@apply text-gray-950 dark:text-white bg-gray-50 dark:bg-slate-800 border-gray-400 dark:border-gray-700;
&:hover {
@apply dark:bg-slate-700 bg-slate-300;
}
}
td {
@apply px-1 sm:px-3 py-3 border border-inherit first:border-l-0 last:border-r-0;
&[data-numeric] {
@apply text-right tabular-nums whitespace-nowrap;
}
}
}