37 lines
832 B
SCSS
37 lines
832 B
SCSS
|
|
.main{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
.reduce, .plus{
|
|
font-size: $font_size_big;
|
|
color: $color_main;
|
|
width: 46px;
|
|
height: 46px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content:center;
|
|
font-size: 50px;
|
|
background-color: $color_main;
|
|
color: #fff;
|
|
border-radius: 8px;
|
|
}
|
|
.input{
|
|
display: flex;
|
|
align-items: flex-end;
|
|
background-color: #fff;
|
|
padding: 5px 10px;
|
|
box-sizing: border-box;
|
|
width: 106px;
|
|
border-radius: 10px;
|
|
}
|
|
input{
|
|
font-size: $font_size_medium;
|
|
}
|
|
.unit{
|
|
font-size: $font_size_min;
|
|
color: $color_font_two;
|
|
}
|
|
|
|
} |