Skip to content

Commit

Permalink
DARK: Aura > Disable logical properties postCSS plugin feature (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
eihabkhan authored Nov 21, 2024
1 parent 50f69e0 commit 9dcb89b
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 18 deletions.
6 changes: 3 additions & 3 deletions themes/aura/assets/cart.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
}
.yc-cart .cart-table .summary-box .price-wrapper .item-price{
width:20%;
text-align:right;
text-align:end;
}
.yc-cart .cart-table .summary-box .total{
font-weight:700;
Expand Down Expand Up @@ -196,7 +196,7 @@
}
.table-container .header .cell{
flex-basis:20%;
text-align:left;
text-align:start;
padding:10px;
font-weight:400;
font-size:14px;
Expand All @@ -209,7 +209,7 @@
}
.table-container .row .cell{
flex-basis:20%;
text-align:left;
text-align:start;
padding:10px;
}
.table-container .row .cell .product-title{
Expand Down
4 changes: 2 additions & 2 deletions themes/aura/assets/featured-products.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
margin:0;
font-size:26px;
font-weight:600;
text-align:left;
text-align:start;
}
@media screen and (max-width: 767px){
.yc-featured-products .counter-wrapper .yc-section-title{
Expand Down Expand Up @@ -63,7 +63,7 @@
transform:translate(-50%, -50%) scale(1.1);
}
.yc-featured-products .product-list .product-block .product-details{
text-align:left;
text-align:start;
margin-top:12px;
padding:0 6px;
text-align:center;
Expand Down
4 changes: 2 additions & 2 deletions themes/aura/assets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -401,12 +401,12 @@ textarea{
align-items:center;
padding:10px 15px;
gap:6px;
text-align:left;
text-align:start;
font-size:14px;
font-weight:400;
}
.dropdown-input .dropbtn :first-child{
margin-right:20px;
margin-inline-end:20px;
}
.dropdown-input .dropbtn .dropdown-icon{
position:absolute;
Expand Down
2 changes: 1 addition & 1 deletion themes/aura/assets/navbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
}
.navigation-drawer .close-drawer-btn{
position:absolute;
left:0;
inset-inline-start:0;
cursor:pointer;
width:40px;
height:40px;
Expand Down
2 changes: 1 addition & 1 deletion themes/aura/assets/product-listing.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
}
.yc-product-listing-container .product-list .product-block .product-details{
margin:14px 0;
text-align:left;
text-align:start;
}
.yc-product-listing-container .product-list .product-block .product-details .product-title{
font-weight:400;
Expand Down
9 changes: 4 additions & 5 deletions themes/aura/assets/product.css
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
.yc-single-product .product-images .product-images-container .splide__list{
display:flex;
flex-direction:column;
margin-left:10px;
margin-inline-start:10px;
}
@media (min-width: 768px){
.yc-single-product .product-images .product-images-container .splide__list{
Expand Down Expand Up @@ -140,15 +140,14 @@
width:80px;
height:78px !important;
cursor:pointer;
margin-bottom:10px;
margin-block-end:10px;
}
@media (min-width: 768px){
.yc-single-product .product-images .product-images-container .thumbnail-images .image-container{
width:150px !important;
height:148px !important;
margin-bottom:0;
margin-bottom:initial;
margin-right:10px;
margin-block-end:unset;
margin-inline-end:10px;
}
}
.yc-single-product .product-images .product-images-container .thumbnail-images .image-container.active{
Expand Down
6 changes: 3 additions & 3 deletions themes/aura/assets/thankyou.css
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,14 @@
border-bottom:1px solid #EBEBEB;
}
.thankyou-page-container .cart-items > table thead > tr > *{
text-align:left;
text-align:start;
color:#a7a7a7;
font-weight:500;
font-size:14px;
padding:0 0 12px;
}
.thankyou-page-container .cart-items > table thead > tr > .total{
text-align:right;
text-align:end;
}
.thankyou-page-container .cart-items > table tbody tr{
border-bottom:1px solid #f0f0f0;
Expand All @@ -150,5 +150,5 @@
padding:8px 0;
}
.thankyou-page-container .cart-items > table tbody tr > .total{
text-align:right;
text-align:end;
}
4 changes: 3 additions & 1 deletion themes/aura/postcss.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ export default {
plugins: [
postcssPresetEnv({
'nesting-rules': true,
'features': {},
'features': {
'logical-properties-and-values': false
},
}),
postcssDiscardComments({
removeAll: true
Expand Down

0 comments on commit 9dcb89b

Please sign in to comment.