angular-hotel-manager/src/styles.css

25 lines
621 B
CSS
Raw Normal View History

2024-08-13 13:11:57 +02:00
/* You can add global styles to this file, and also import other style files */
2024-08-20 14:26:19 +02:00
@tailwind base;
@tailwind components;
@tailwind utilities;
.button {
@apply border-black rounded px-3 py-1 border-[3px];
}
2025-01-07 09:59:47 +01:00
.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
}