style = treshold

This commit is contained in:
2023-07-26 12:56:44 +02:00
parent d92349d6b5
commit 0d9b47c69d
5 changed files with 62 additions and 20 deletions

View File

@@ -1,3 +1,44 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
* {
@apply border-slate-600 text-slate-100 placeholder-slate-400;
}
body {
@apply bg-slate-800;
}
button {
@apply py-0.5 px-2 border rounded bg-slate-600 hover:bg-slate-800;
}
input {
@apply border bg-slate-500 rounded px-1;
}
textarea {
@apply border rounded bg-slate-500 w-full;
}
table {
@apply table-auto border-collapse border-slate-500 w-full;
}
th {
@apply border bg-slate-600 px-1;
}
td {
@apply border px-1;
}
::-webkit-scrollbar {
@apply w-3;
}
::-webkit-scrollbar-track {
@apply bg-slate-500;
}
::-webkit-scrollbar-thumb {
@apply bg-slate-600 hover:bg-slate-800;
border-radius: 5px;
}
}