24 lines
393 B
CSS
24 lines
393 B
CSS
|
|
* {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
box-sizing: border-box;
|
||
|
|
font-family: 'Poppins', sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
background-color: var(--background);
|
||
|
|
overflow-x: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
a {
|
||
|
|
text-decoration: none;
|
||
|
|
color: inherit;
|
||
|
|
}
|
||
|
|
|
||
|
|
.woocommerce-LoopProduct-link .woocommerce-Price-amount {
|
||
|
|
display: none !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.single-product__calculator .woocommerce-Price-amount {
|
||
|
|
display: none !important;
|
||
|
|
}
|