25 lines
621 B
CSS
25 lines
621 B
CSS
/* You can add global styles to this file, and also import other style files */
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
.button {
|
|
@apply border-black rounded px-3 py-1 border-[3px];
|
|
}
|
|
|
|
.input-field {
|
|
@apply border-red-500 text-3xl rounded-full bg-gray-500 font-bold p-3 m-3 border-8
|
|
}
|
|
|
|
.back-button {
|
|
@apply border-black rounded bg-blue-500 border-[30px] m-3 text-3xl font-bold p-3
|
|
}
|
|
|
|
.submit-button {
|
|
@apply border-black rounded-full bg-green-500 border-[30px] m-3 text-3xl font-bold p-3
|
|
}
|
|
|
|
.delete-button {
|
|
@apply border-black rounded bg-red-500 border-[30px] m-3 text-3xl font-bold p-3
|
|
}
|