_remove-icon.scss 544 B

12345678910111213141516171819
  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: var(--global--font-size-lg);
  7. font-family: sans-serif !important; // Required for theme compatibility
  8. height: var(--global--font-size-md);
  9. width: var(--global--font-size-md);
  10. color: red !important; // Required for default theme compatibility
  11. &:hover {
  12. color: var(--global--color-background) !important; // Required for default theme compatibility
  13. background: red;
  14. }
  15. }
  16. }