_error-message.scss 441 B

12345678910111213141516171819
  1. @use 'sass:map';
  2. .error-message {
  3. border: 1px solid transparent; // ensure visible separation in Windows High Contrast mode
  4. margin: 0.5em 0 0;
  5. font-size: 1em;
  6. font-weight: bold;
  7. color: theme('colors.text-error');
  8. &::before {
  9. content: '';
  10. display: inline-block;
  11. width: 1em;
  12. height: 1em;
  13. vertical-align: -10%;
  14. mask-image: url('#{$images-root}icons/warning.svg');
  15. background-color: currentColor;
  16. }
  17. }