_dismissible.scss 674 B

1234567891011121314151617181920212223242526
  1. .w-dismissible-badge {
  2. border-radius: theme('borderRadius.full');
  3. background-color: theme('colors.warning.100');
  4. flex-shrink: 0;
  5. min-width: theme('spacing.[2.5]');
  6. height: theme('spacing.[2.5]');
  7. @media (forced-colors: active) {
  8. border: 3px solid transparent;
  9. box-sizing: content-box;
  10. }
  11. }
  12. .w-dismissible-badge--count {
  13. color: theme('colors.surface-menus');
  14. text-align: center;
  15. font-size: 0.625rem;
  16. font-weight: theme('fontWeight.bold');
  17. min-width: theme('spacing.[3.5]');
  18. height: theme('spacing.[3.5]');
  19. line-height: theme('lineHeight.tight');
  20. @media (prefers-reduced-motion: no-preference) {
  21. animation: ping-warning 5s 5;
  22. }
  23. }