2023-01-21 16:59:58 +02:00
|
|
|
@import "./tailwind_base.css";
|
|
|
|
@import "./merged/tailwind_styles.css";
|
2023-01-21 19:11:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@layer components {
|
|
|
|
.button {
|
2023-01-21 19:42:46 +02:00
|
|
|
@apply inline-block rounded-lg px-3 py-2 text-base font-medium border border-gray-500 hover:border-black;
|
2023-01-21 19:11:21 +02:00
|
|
|
}
|
|
|
|
.change {
|
|
|
|
@apply bg-cyan-200;
|
|
|
|
}
|
|
|
|
.remove {
|
|
|
|
@apply bg-red-200;
|
|
|
|
}
|
|
|
|
.action {
|
|
|
|
@apply bg-green-200;
|
|
|
|
}
|
|
|
|
}
|