14 lines
347 B
CSS
14 lines
347 B
CSS
/* Base error message styles */
|
|
.error-message {
|
|
@apply h-auto text-xs wrap-break-word text-danger;
|
|
|
|
/**
|
|
* Transitions
|
|
* CRITICAL: motion-reduce must be AFTER transition for correct override specificity
|
|
*/
|
|
transition:
|
|
opacity 150ms var(--ease-out),
|
|
height 350ms var(--ease-smooth);
|
|
@apply motion-reduce:transition-none;
|
|
}
|