mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-07 18:56:00 -05:00
Changed frontend to new frontend stuff and deleted old components. Cleaned up some code in the file manager admin tool.
27 lines
631 B
SCSS
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;
|
|
}
|
|
}
|
|
} |