Merge pull request #6633 from papnoisanjeev/cart-and-wishlist-button-positioning-issue
Add to cart and other button positioning issue on product view and quick view #6632
This commit is contained in:
commit
7fae012f08
File diff suppressed because one or more lines are too long
|
|
@ -4,7 +4,7 @@
|
|||
"/js/velocity.js": "/js/velocity.js?id=485e333fae6be00d598d85d1102c8896",
|
||||
"/js/manifest.js": "/js/manifest.js?id=4113cf6789cdd4f2768f508bc32cad2d",
|
||||
"/js/components.js": "/js/components.js?id=387078c4cd083fe68fe0ea12d359afe1",
|
||||
"/css/velocity.css": "/css/velocity.css?id=d3e3d68ebf1870fc95c045ba29dc2b77",
|
||||
"/css/velocity.css": "/css/velocity.css?id=93e9b636d5f2bb523535fc56ddc80a09",
|
||||
"/css/velocity-admin.css": "/css/velocity-admin.css?id=b67a82956e53163b5e3ff45a44f9778f",
|
||||
"/images/Camera.svg": "/images/Camera.svg?id=b2fd2f9e17e1ccee96e29f6c6cec91e8",
|
||||
"/images/Icon-Arrow-Right.svg": "/images/Icon-Arrow-Right.svg?id=e30f624f1a70197dc9ad9011b240aa8e",
|
||||
|
|
|
|||
|
|
@ -639,6 +639,10 @@ body::after {
|
|||
.product-actions {
|
||||
display: inline-block;
|
||||
|
||||
form {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.compare-icon,
|
||||
.wishlist-icon {
|
||||
height: 38px;
|
||||
|
|
|
|||
|
|
@ -260,6 +260,10 @@
|
|||
float: left;
|
||||
}
|
||||
|
||||
form {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.compare-icon,
|
||||
.wishlist-icon {
|
||||
height: 46px;
|
||||
|
|
|
|||
|
|
@ -178,6 +178,14 @@ body {
|
|||
float: right;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.wishlist-icon {
|
||||
padding: 0px !important;
|
||||
}
|
||||
|
||||
.product-information {
|
||||
margin-right: 1%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -340,6 +348,10 @@ body {
|
|||
float: left;
|
||||
}
|
||||
|
||||
form {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.wishlist-icon {
|
||||
float: left;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -430,6 +430,11 @@
|
|||
padding-left: 10px;
|
||||
}
|
||||
|
||||
form {
|
||||
display: inline-table;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.product-price span:first-child, .product-price span:last-child {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
|
|
|
|||
Loading…
Reference in New Issue