32 lines
728 B
SCSS
32 lines
728 B
SCSS
.btns_list{
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
// margin-top: 30px;
|
|
.scroll{
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
}
|
|
.list_scroll{
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
.btns_item{
|
|
padding: 0 10px;
|
|
height: 60px;
|
|
border: 2px solid #dddddd;
|
|
border-radius: 38px;
|
|
text-align: center;
|
|
line-height: 60px;
|
|
font-size: $font_size;
|
|
color: $color_font_three;
|
|
&:nth-child(n+2) {
|
|
margin-left: 32px;
|
|
}
|
|
}
|
|
.end_btn{
|
|
border: 2px solid $color_main;
|
|
color: $color_main;
|
|
}
|
|
} |