35 lines
695 B
CSS
35 lines
695 B
CSS
/* ================ Cart ================ */
|
|
|
|
.woocommerce:has(.woocommerce-cart-form){
|
|
width: 90%;
|
|
color: var(--primary);
|
|
margin: auto;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.checkout-button, .wc-block-components-button{
|
|
background-color: var(--button-color) !important;
|
|
color: var(--white);
|
|
border: 0;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.wc-block-components-product-name {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.wp-block-woocommerce-checkout {
|
|
width: 90%;
|
|
margin: auto !important;
|
|
margin-bottom: 50px !important;
|
|
}
|
|
|
|
td.product-thumbnail {
|
|
background-color: var(--white);
|
|
}
|
|
|
|
.product-thumbnail img {
|
|
width: 100% !important;
|
|
height: 200px !important;
|
|
object-fit: contain;
|
|
} |