You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
371 B
CSS
22 lines
371 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html,
|
|
body,
|
|
#__nuxt {
|
|
@apply h-full w-full bg-primary text-[15px] text-light;
|
|
}
|
|
|
|
input {
|
|
@apply border border-lightgray bg-darkgray p-2 outline-none focus:outline-none;
|
|
}
|
|
|
|
textarea {
|
|
@apply resize-none bg-transparent py-4 outline-none focus:outline-none;
|
|
}
|
|
|
|
textarea::placeholder {
|
|
@apply text-[#71767b];
|
|
}
|