volunteers/app/assets/stylesheets/application.tailwind.css

20 lines
329 B
CSS
Raw Normal View History

2022-11-21 11:10:04 +01:00
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
2023-01-23 14:04:40 +01:00
.button {
@apply inline-block rounded-lg px-3 py-2 text-base font-medium border border-gray-500 hover:border-black;
}
.change {
@apply bg-cyan-200;
}
.remove {
@apply bg-red-200;
}
.action {
@apply bg-green-200;
2022-11-21 11:10:04 +01:00
}
}