28 lines
506 B
SCSS
28 lines
506 B
SCSS
.product-identifier--productReference {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: end;
|
|
margin-bottom: 24px;
|
|
|
|
@media #{$mq-tablet}, #{$mq-mobile} {
|
|
justify-content: flex-start;
|
|
padding-top: 8px;
|
|
}
|
|
|
|
.product-identifier {
|
|
&__label, &__separator {
|
|
display: none;
|
|
}
|
|
|
|
&__value {
|
|
font-family: $font-family;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
color: $color-black-tranparent;
|
|
}
|
|
}
|
|
}
|
|
|