13 lines
269 B
CSS
13 lines
269 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
.btn-alert-error {
|
|
@apply bg-transparent hover:bg-[#cd5a5a] border border-error-content text-error-content
|
|
}
|
|
|
|
/* I like alert icons to be top-aligned */
|
|
.alert > :where(*) {
|
|
align-items: flex-start;
|
|
}
|