From 31488e9740bed1201c1f00ae89e40283a0ff901f Mon Sep 17 00:00:00 2001 From: Bernardo Waldhelm Date: Fri, 3 Feb 2023 09:20:58 -0300 Subject: [PATCH] feat(product): adicionando font-family e tamanho no before after do price --- .../vtexProduct/vtex.product-summary.scss | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/styles/sass/pages/product/vtexProduct/vtex.product-summary.scss b/styles/sass/pages/product/vtexProduct/vtex.product-summary.scss index d33e56a..06fab47 100644 --- a/styles/sass/pages/product/vtexProduct/vtex.product-summary.scss +++ b/styles/sass/pages/product/vtexProduct/vtex.product-summary.scss @@ -68,10 +68,32 @@ &::before { content: "de "; + font-family: $font-family; + font-style: normal; + font-weight: 400; + font-size: 14px; + line-height: 19px; + text-align: center; + + @media #{$mq-tablet}, #{$mq-mobile} { + font-size: 12px; + line-height: 15px; + } } &::after { content: " por"; + font-family: $font-family; + font-style: normal; + font-weight: 400; + font-size: 14px; + line-height: 19px; + text-align: center; + + @media #{$mq-tablet}, #{$mq-mobile} { + font-size: 12px; + line-height: 15px; + } } }