Files
lara-bermite/resources/css/app.css
2023-09-14 23:48:06 +02:00

12 lines
378 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
.btn {
@apply text-center text-white px-2 py-1 focus:outline-1 border border-white transition duration-300 ease-in-out shadow hover:shadow-lg rounded cursor-pointer disabled:opacity-50 disabled:cursor-not-allowed;
}
.btn-primary {
@apply btn bg-blue-700 border-blue-700 hover:bg-blue-800 focus:bg-blue-800;
}