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.

17 lines
428 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
body {
@apply min-h-screen m-0 p-0 bg-slate-900 text-slate-100 leading-relaxed;
transition: color 0.3s, background-color 0.2s;
}
#app {
@apply flex justify-around items-center w-screen h-screen overflow-hidden;
}
button, input {
@apply px-4 py-2 text-xl bg-slate-900 border-2 rounded border-indigo-500 focus:border-indigo-300 text-indigo-300 outline-none;
}