feat(pdp): Adiciona installments message

This commit is contained in:
Cainã Milech 2023-01-25 00:01:50 -03:00
parent 7044a3e32b
commit c9a4ae4eda
4 changed files with 6 additions and 4 deletions

View File

@ -214,7 +214,8 @@
"product-installments": { "product-installments": {
"props": { "props": {
"installmentsCriteria": "max-quantity-without-interest", "installmentsCriteria": "max-quantity-without-interest",
"blockClass": "parcelamentos" "blockClass": "parcelamentos",
"message": "{installmentsNumber} x {installmentValue} sem juros"
} }
}, },

View File

@ -8,7 +8,7 @@
/* Media Query M3 */ /* Media Query M3 */
/* Grid breakpoints */ /* Grid breakpoints */
.listContainer { .listContainer {
border-bottom: 1px solid gray; border-bottom: 1px solid #bfbfbf;
margin-bottom: 32px; margin-bottom: 32px;
padding-left: 64px; padding-left: 64px;
padding-right: 64px; padding-right: 64px;

View File

@ -1,5 +1,5 @@
.listContainer { .listContainer {
border-bottom: 1px solid gray; border-bottom: 1px solid $color-gray9;
margin-bottom: 32px; margin-bottom: 32px;
padding-left: 64px; padding-left: 64px;
padding-right: 64px; padding-right: 64px;
@ -29,7 +29,7 @@
font-weight: 400; font-weight: 400;
font-size: 18px; font-size: 18px;
line-height: 38px; line-height: 38px;
color: #bfbfbf; color: $color-gray9;
text-transform: capitalize; text-transform: capitalize;
margin: 0; margin: 0;
padding: 0; padding: 0;

View File

@ -12,6 +12,7 @@ $color-gray5: #e5e5e5;
$color-gray6: #929292; $color-gray6: #929292;
$color-gray7: #989898; $color-gray7: #989898;
$color-gray8: #575757; $color-gray8: #575757;
$color-gray9: #bfbfbf;
$color-blue: #4267b2; $color-blue: #4267b2;