_remove-icon.scss 645 B

1234567891011121314151617181920
  1. /**
  2. * Remove Icon
  3. */
  4. body[class*="woocommerce"] #page { // adding #page here to override default wc styles without !important
  5. a.remove {
  6. font-size: map-deep-get($config-global, "font", "size", "lg");
  7. font-family: sans-serif !important; // Required for theme compatibility
  8. height: map-deep-get($config-global, "font", "size", "lg");
  9. width: map-deep-get($config-global, "font", "size", "lg");
  10. color: red !important; // Required for default theme compatibility
  11. &:hover {
  12. color: map-deep-get($config-global, "color", "background", "default") !important; // Required for default theme compatibility
  13. background: red;
  14. }
  15. }
  16. }