fix: responsividade css list-price no product-summary #6

Merged
josecarloslins merged 1 commits from feature/development into master 2023-02-06 19:10:52 +00:00
2 changed files with 46 additions and 0 deletions

View File

@ -136,4 +136,25 @@
font-size: 18px;
line-height: 25px;
}
.containerNormal--container-product-summary-related-products-pdp :global(.vtex-product-price-1-x-listPrice) {
display: flex;
align-items: center;
justify-content: center;
}
.containerNormal--container-product-summary-related-products-pdp :global(.vtex-product-price-1-x-listPrice) :global(.vtex-product-price-1-x-listPriceValue) {
text-decoration: none;
padding: 8px 0;
}
.containerNormal--container-product-summary-related-products-pdp :global(.vtex-product-price-1-x-listPrice) :global(.vtex-product-price-1-x-listPriceValue)::before {
font-size: 12px;
line-height: 16px;
}
.containerNormal--container-product-summary-related-products-pdp :global(.vtex-product-price-1-x-listPrice) :global(.vtex-product-price-1-x-listPriceValue)::after {
font-size: 12px;
line-height: 16px;
}
.containerNormal--container-product-summary-related-products-pdp :global(.vtex-product-price-1-x-listPrice) :global(.vtex-product-price-1-x-currencyContainer) {
font-size: 18px;
line-height: 25px;
}
}

View File

@ -162,5 +162,30 @@
}
}
}
:global(.vtex-product-price-1-x-listPrice){
display: flex;
align-items: center;
justify-content: center;
:global(.vtex-product-price-1-x-listPriceValue){
text-decoration: none;
padding: 8px 0;
&::before{
font-size: 12px;
line-height: 16px;
}
&::after{
font-size: 12px;
line-height: 16px;
}
}
:global(.vtex-product-price-1-x-currencyContainer){
font-size: 18px;
line-height: 25px;
}
}
}
}