38 lines
1019 B
SCSS
38 lines
1019 B
SCSS
.order_list_main{
|
|
height: 100vh;
|
|
background-color: $color_bg_one;
|
|
display: flex;
|
|
flex-direction: column;
|
|
.title{
|
|
padding: 0 20px;
|
|
background-color: #fff;
|
|
box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.16);
|
|
border-bottom: 2px solid #e2e2e2;
|
|
height: 160px;
|
|
.order_status_list{
|
|
font-size: $font_size;
|
|
color: #9E9E9E;
|
|
margin-top: 20px;
|
|
.order_status_item{
|
|
padding: 20px;
|
|
box-sizing: border-box;
|
|
}
|
|
.selected{
|
|
font-weight: 700;
|
|
color: #000;
|
|
border-bottom: 4px solid #707070;
|
|
}
|
|
.order_list_scroll{
|
|
white-space: nowrap;
|
|
display: flex;
|
|
}
|
|
}
|
|
}
|
|
.order_list{
|
|
height: calc(100vh - 160px);
|
|
.order_item_con{
|
|
margin-top: 20px;
|
|
padding: 0 20px;
|
|
}
|
|
}
|
|
} |