25 lines
319 B
SCSS
25 lines
319 B
SCSS
.stepper-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.stepper-btn {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 50px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.stepper-btn-minus {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.stepper-btn-plus {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.stepper-text {
|
|
font-size: 16px;
|
|
color: #333;
|
|
}
|