lasthourcloud/resources/css/app.css

21 lines
512 B
CSS
Raw Normal View History

/* @tailwind base; */
2023-03-17 14:33:48 +00:00
@tailwind components;
@tailwind utilities;
2023-05-03 12:36:53 +00:00
body {
@apply bg-neutral-900 text-white font-sans;
}
a, a:visited {
@apply text-neutral-300 hover:text-purple-500;
}
2023-05-04 08:45:09 +00:00
input, textarea {
@apply border-none p-2 bg-neutral-800 text-white disabled:text-neutral-600 read-only:text-neutral-600 read-only:select-none
2023-05-03 12:36:53 +00:00
}
2023-05-04 08:45:09 +00:00
select {
@apply border-none p-2 bg-neutral-800 text-white disabled:text-neutral-600 read-only:select-none
}
2023-05-03 12:36:53 +00:00
button {
2023-05-03 12:40:58 +00:00
@apply border-none px-2 p-1 cursor-pointer;
2023-05-03 12:36:53 +00:00
}