reset-appearance.module.css 274 B

123456789101112131415
  1. /*
  2. * @file
  3. * Utility class to remove browser styles, especially for button.
  4. */
  5. .reset-appearance {
  6. -webkit-appearance: none;
  7. -moz-appearance: none;
  8. appearance: none;
  9. border: 0 none;
  10. background: transparent;
  11. padding: 0;
  12. margin: 0;
  13. line-height: inherit;
  14. }