36 lines
964 B
SCSS
36 lines
964 B
SCSS
.order_list_main{
|
|
min-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;
|
|
.order_status_list{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: $font_size;
|
|
color: #9E9E9E;
|
|
margin-top: 20px;
|
|
.order_status_item{
|
|
padding: 20px 10px;
|
|
box-sizing: border-box;
|
|
}
|
|
.selected{
|
|
font-weight: 700;
|
|
color: #000;
|
|
border-bottom: 4px solid #707070;
|
|
// border-radius: 4px;
|
|
}
|
|
}
|
|
}
|
|
.order_list{
|
|
flex:1;
|
|
height: 0;
|
|
.order_item{
|
|
margin-top: 20px;
|
|
}
|
|
}
|
|
} |