27 lines
393 B
SCSS
27 lines
393 B
SCSS
|
|
// Código de identificação do produto
|
|
|
|
.product-identifier {
|
|
|
|
&__label {
|
|
display: none;
|
|
}
|
|
|
|
&__separator {
|
|
display: none;
|
|
}
|
|
|
|
&__value {
|
|
display: flex;
|
|
justify-content: end;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
color: rgba(146, 146, 146, 0.48);
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
justify-content: start;
|
|
}
|
|
}
|
|
}
|