line colors

This commit is contained in:
2023-09-18 11:00:51 +02:00
parent 20defc5b0f
commit 3ac39dcd45
3 changed files with 45 additions and 9 deletions

View File

@@ -23,12 +23,26 @@
table {
@apply table-auto border-collapse border-slate-500 w-full;
}
th {
@apply border bg-slate-600 px-1;
}
td {
@apply border px-1;
th {
@apply border bg-slate-600 px-1;
}
td {
@apply border px-1;
}
tr {
@apply hover:bg-slate-700;
&.line-red {
@apply bg-amber-900 hover:bg-amber-800;
}
&.line-blue {
@apply bg-sky-600 hover:bg-sky-500;
}
&.line-green {
@apply bg-emerald-500 hover:bg-emerald-400;
}
}
}
::-webkit-scrollbar {