feat(product): adicionando font-family e tamanho no before after do price

This commit is contained in:
Bernardo Cunha Ernani Waldhelm 2023-02-03 09:20:58 -03:00
parent 8cb2b112b6
commit 31488e9740

View File

@ -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;
}
}
}