[TASK] refactor alert messages

This commit is contained in:
Marie Birner
2023-04-07 09:57:38 +02:00
parent 1490b191af
commit 7190e14c2f
5 changed files with 19 additions and 20 deletions

View File

@ -7,3 +7,4 @@
@import 'components/btns';
@import 'components/links';
@import 'components/input';
@import 'components/alert';

View File

@ -0,0 +1,9 @@
.alert {
&-success {
@apply bg-[#15803d];
}
&-error {
@apply bg-[#f43f5e];
}
}