22 lines
416 B
CSS
22 lines
416 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
@tailwind typography;
|
|
|
|
a.link {
|
|
@apply underline text-violet-700;
|
|
}
|
|
|
|
.input {
|
|
@apply inline-block h-11 m-2 p-2 px-3 rounded-lg bg-white border border-indigo-100 outline-none
|
|
transition-shadow shadow shadow-indigo-200 hover:border-indigo-400 focus:border-indigo-600 active:border-indigo-600;
|
|
}
|
|
|
|
select {
|
|
@apply input;
|
|
}
|
|
|
|
input {
|
|
@apply input;
|
|
}
|