Merge pull request #6387 from devansh-webkul/carousel-width

Carousel Width Updated #6276
This commit is contained in:
Jitendra Singh 2022-05-09 10:37:27 +05:30 committed by GitHub
commit fab1fbf18c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 50 additions and 17 deletions

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
"/js/velocity.js": "/js/velocity.js?id=f655ac65cbd1aa549cba", "/js/velocity.js": "/js/velocity.js?id=f655ac65cbd1aa549cba",
"/js/manifest.js": "/js/manifest.js?id=e069a8f952a02ea0f290", "/js/manifest.js": "/js/manifest.js?id=e069a8f952a02ea0f290",
"/js/components.js": "/js/components.js?id=13ebf112e40292178d23", "/js/components.js": "/js/components.js?id=13ebf112e40292178d23",
"/css/velocity.css": "/css/velocity.css?id=032f86ffd4b83791ec40", "/css/velocity.css": "/css/velocity.css?id=dc79a6ba53b2f91384ce",
"/css/velocity-admin.css": "/css/velocity-admin.css?id=b67a82956e53163b5e3f", "/css/velocity-admin.css": "/css/velocity-admin.css?id=b67a82956e53163b5e3f",
"/images/icon-calendar.svg": "/images/icon-calendar.svg?id=870d0f733a5837742276", "/images/icon-calendar.svg": "/images/icon-calendar.svg?id=870d0f733a5837742276",
"/images/icon-camera.svg": "/images/icon-camera.svg?id=b2fd2f9e17e1ccee96e2", "/images/icon-camera.svg": "/images/icon-camera.svg?id=b2fd2f9e17e1ccee96e2",

View File

@ -226,7 +226,6 @@
.product-card-new { .product-card-new {
width: 12rem; width: 12rem;
height: 385px;
border: none !important; border: none !important;
margin: 0 5px 10px 10px; margin: 0 5px 10px 10px;
@ -2018,10 +2017,10 @@
margin-top: 0; margin-top: 0;
&.required:after { &.required:after {
content: "*"; content: '*';
font-size: 16px; font-size: 16px;
margin-left: -1px; margin-left: -1px;
color: #F05153; color: #f05153;
} }
} }
@ -2118,22 +2117,22 @@
.full-content-wrapper { .full-content-wrapper {
> .container-fluid { > .container-fluid {
padding: 0 !important; padding: 0;
margin-bottom: 60px !important; margin: 10px 0;
> .row { > .row {
padding: 0 15px !important; padding: 0 15px;
} }
} }
p, p,
div { div {
> .container-fluid { > .container-fluid {
padding: 0 !important; padding: 0;
margin-bottom: 60px !important; margin: 10px 0;
> .row { > .row {
padding: 0 15px !important; padding: 0 15px;
} }
} }
} }
@ -2396,7 +2395,6 @@
padding: 0 !important; padding: 0 !important;
margin: 0 !important; margin: 0 !important;
span { span {
font-size: 24px; font-size: 24px;
} }

View File

@ -2,7 +2,6 @@
display: none !important; display: none !important;
} }
/* large devices */
@media only screen and (max-width: 1192px) { @media only screen and (max-width: 1192px) {
.sticky-header { .sticky-header {
display: block !important; display: block !important;
@ -51,7 +50,6 @@
} }
} }
/* medium devices */
@media only screen and (max-width: 992px) { @media only screen and (max-width: 992px) {
$header-height: 50px; $header-height: 50px;
@ -908,7 +906,6 @@
} }
} }
/* medium devices */
@media only screen and (max-width: 768px) { @media only screen and (max-width: 768px) {
.sticky-header { .sticky-header {
display: none !important; display: none !important;
@ -956,7 +953,16 @@
} }
} }
/* small devices */ @media only screen and (max-width: 460px) {
.product-card-new {
max-width: 11rem;
.product-image-container img {
min-height: unset;
}
}
}
@media only screen and (max-width: 420px) { @media only screen and (max-width: 420px) {
.sticky-header { .sticky-header {
display: none !important; display: none !important;
@ -982,10 +988,31 @@
min-height: 425px; min-height: 425px;
} }
} }
.product-card-new {
max-width: 9rem;
.product-image-container img {
min-height: unset;
}
}
}
@media only screen and (max-width: 360px) {
.product-card-new {
max-width: 8rem;
.product-image-container img {
min-height: unset;
}
}
} }
/* very small devices */
@media only screen and (max-width: 320px) { @media only screen and (max-width: 320px) {
body {
min-width: 280px;
}
.sticky-header { .sticky-header {
display: none !important; display: none !important;
} }
@ -1014,4 +1041,12 @@
min-height: 425px; min-height: 425px;
} }
} }
.product-card-new {
max-width: 7rem;
.product-image-container img {
min-height: unset;
}
}
} }