23 lines
518 B
SCSS
23 lines
518 B
SCSS
.order_price{
|
|
font-weight: 700;
|
|
display: flex;
|
|
align-items: center;
|
|
.order_price_text{
|
|
font-size: $font_size_medium;
|
|
margin-right: 10px;
|
|
}
|
|
.order_price_num{
|
|
text{
|
|
&:nth-child(1) {
|
|
font-size: $font_size_min;
|
|
}
|
|
&:nth-child(2) {
|
|
font-size: $font_size_big;
|
|
}
|
|
&:nth-child(3) {
|
|
font-size: $font_size_medium;
|
|
}
|
|
}
|
|
}
|
|
|
|
} |