first useful css

This commit is contained in:
Andras Bacsai 2023-05-03 14:36:53 +02:00
parent 35d6881336
commit 0aff193e17
2 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,16 @@
/* @tailwind base; */
@tailwind components;
@tailwind utilities;
body {
@apply bg-neutral-900 text-white font-sans;
}
a, a:visited {
@apply text-neutral-300 hover:text-purple-500;
}
input, select, textarea {
@apply border-none p-2 bg-neutral-800 text-white disabled:text-neutral-600;
}
button {
@apply border-none px-2 rounded cursor-pointer;
}

View File

@ -1,5 +1,5 @@
@props([
'defaultClass' => 'bg-indigo-500',
'defaultClass' => 'text-white bg-violet-500 hover:bg-violet-600',
'confirm' => null,
'confirmAction' => null,
])