1234567891011121314151617181920 |
- /**
- * Remove Icon
- */
- body[class*="woocommerce"] #page { // adding #page here to override default wc styles without !important
- a.remove {
- font-size: map-deep-get($config-global, "font", "size", "lg");
- font-family: sans-serif !important; // Required for theme compatibility
- height: map-deep-get($config-global, "font", "size", "lg");
- width: map-deep-get($config-global, "font", "size", "lg");
- color: red !important; // Required for default theme compatibility
- &:hover {
- color: map-deep-get($config-global, "color", "background", "default") !important; // Required for default theme compatibility
- background: red;
- }
- }
- }
|