2018-05-26 21:50:38 +00:00
|
|
|
/**
|
|
|
|
* Styling to control alert boxes.
|
|
|
|
*/
|
|
|
|
.alert {
|
|
|
|
@apply .p-2 .border .items-center .leading-normal .rounded .flex .w-full .text-sm;
|
|
|
|
|
|
|
|
& > .title {
|
|
|
|
@apply .flex .rounded-full .uppercase .px-2 .py-1 .text-xs .font-bold .mr-3 .leading-none;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > .message {
|
|
|
|
@apply .mr-2 .text-left .flex-auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.error {
|
2019-02-09 22:32:18 +00:00
|
|
|
@apply .bg-red-600 .border-red-800 .text-red-50;
|
2018-05-26 21:50:38 +00:00
|
|
|
|
|
|
|
& > .title {
|
2019-02-09 22:44:35 +00:00
|
|
|
@apply .bg-red-500;
|
2018-05-26 21:50:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.info {
|
2019-02-09 22:44:35 +00:00
|
|
|
@apply .bg-primary-600 .border-primary-800 .text-primary-50;
|
2018-05-26 21:50:38 +00:00
|
|
|
|
|
|
|
& > .title {
|
2019-02-09 22:44:35 +00:00
|
|
|
@apply .bg-primary-500;
|
2018-05-26 21:50:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.success {
|
2019-02-09 22:36:39 +00:00
|
|
|
@apply .bg-green-600 .border-green-800 .text-green-50;
|
2018-05-26 21:50:38 +00:00
|
|
|
|
|
|
|
& > .title {
|
2019-02-09 22:37:30 +00:00
|
|
|
@apply .bg-green-500;
|
2018-05-26 21:50:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.warning {
|
2019-02-09 22:33:39 +00:00
|
|
|
@apply .bg-yellow-600 .border-yellow-800 .text-yellow-50;
|
2018-05-26 21:50:38 +00:00
|
|
|
|
|
|
|
& > .title {
|
2019-02-09 22:48:47 +00:00
|
|
|
@apply .bg-yellow-500;
|
2018-05-26 21:50:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|