fix: ensure website theme is applied correctly
This commit is contained in:
parent
af8436d0dc
commit
60ea785dfd
@ -1,4 +1,3 @@
|
||||
@import "frappe/public/scss/desk/variables";
|
||||
@import "frappe/public/scss/common/mixins";
|
||||
|
||||
body.product-page {
|
||||
@ -217,12 +216,12 @@ body.product-page {
|
||||
border-color: var(--table-border-color) !important;
|
||||
padding: 15px;
|
||||
|
||||
@include media-breakpoint-between(xs, md) {
|
||||
@media (max-width: 840px) {
|
||||
height: 300px;
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
@include media-breakpoint-up(lg) {
|
||||
@media (min-width: 1090px) {
|
||||
height: 350px;
|
||||
width: 350px;
|
||||
}
|
||||
@ -233,11 +232,12 @@ body.product-page {
|
||||
}
|
||||
|
||||
.item-slideshow {
|
||||
@include media-breakpoint-between(xs, md) {
|
||||
|
||||
@media (max-width: 840px) {
|
||||
max-height: 320px;
|
||||
}
|
||||
|
||||
@include media-breakpoint-up(lg) {
|
||||
@media (min-width: 1090px) {
|
||||
max-height: 430px;
|
||||
}
|
||||
|
||||
@ -254,7 +254,7 @@ body.product-page {
|
||||
cursor: pointer;
|
||||
|
||||
&:hover, &.active {
|
||||
border-color: $primary;
|
||||
border-color: var(--primary);
|
||||
}
|
||||
}
|
||||
|
||||
@ -316,12 +316,12 @@ body.product-page {
|
||||
}
|
||||
|
||||
.item-group-slideshow {
|
||||
.item-group-description {
|
||||
// .item-group-description {
|
||||
// max-width: 900px;
|
||||
}
|
||||
// }
|
||||
|
||||
.carousel-inner.rounded-carousel {
|
||||
border-radius: $card-border-radius;
|
||||
border-radius: var(--card-border-radius);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
@import "frappe/public/scss/website/variables";
|
||||
|
||||
.filter-options {
|
||||
max-height: 300px;
|
||||
@ -14,7 +13,7 @@
|
||||
}
|
||||
|
||||
&.active {
|
||||
border-color: $primary;
|
||||
border-color: var(--primary);
|
||||
|
||||
.check {
|
||||
display: inline-flex;
|
||||
@ -25,7 +24,7 @@
|
||||
.check {
|
||||
display: inline-flex;
|
||||
padding: 0.25rem;
|
||||
background: $primary;
|
||||
background: var(--primary);
|
||||
color: white;
|
||||
border-radius: 50%;
|
||||
font-size: 12px;
|
||||
@ -38,12 +37,12 @@
|
||||
}
|
||||
|
||||
.result {
|
||||
border-bottom: 1px solid $border-color;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
}
|
||||
|
||||
.transaction-list-item {
|
||||
padding: 1rem 0;
|
||||
border-top: 1px solid $border-color;
|
||||
border-top: 1px solid var(--border-color);
|
||||
position: relative;
|
||||
|
||||
a.transaction-item-link {
|
||||
|
Loading…
x
Reference in New Issue
Block a user