27 lines
414 B
SCSS
27 lines
414 B
SCSS
.product-identifier {
|
|
position: absolute;
|
|
top: 37px;
|
|
right: 0;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
color: rgba(146, 146, 146, 0.48);
|
|
|
|
&__label,
|
|
&__separator {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.product-identifier {
|
|
top: 71px !important;
|
|
}
|
|
}
|
|
@media screen and (max-width: 1024px) {
|
|
.product-identifier {
|
|
left: 0;
|
|
top: 42px;
|
|
}
|
|
}
|