21 lines
381 B
SCSS
21 lines
381 B
SCSS
.product-identifier--productReference {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-bottom: 24px;
|
|
|
|
@include mq(lg, max) {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.product-identifier__label,
|
|
.product-identifier__separator {
|
|
display: none;
|
|
}
|
|
|
|
.product-identifier__value {
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
color: rgba(146, 146, 146, 0.48);
|
|
}
|
|
}
|