48 lines
1017 B
SCSS
48 lines
1017 B
SCSS
.main {
|
|
min-height: 100vh;
|
|
background-color: #f7f7f7ff;
|
|
padding: 24px;
|
|
padding-bottom: 180px;
|
|
.add_card_btn {
|
|
height: 82px;
|
|
background: #ffffff;
|
|
border-radius: 16px;
|
|
border: 1px solid #337fff;
|
|
text-align: center;
|
|
line-height: 82px;
|
|
color: #337fff;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.order_btn {
|
|
position: fixed;
|
|
height: 162px;
|
|
background: #ffffff;
|
|
box-shadow: 0px -5px 20px -8px rgba(0, 0, 0, 0.06);
|
|
width: 100%;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding: 0 24px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
.btn_con {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
width: 100%;
|
|
height: 100px;
|
|
}
|
|
.btn {
|
|
width: 195px;
|
|
height: 72px;
|
|
border: 1px solid rgba(0, 0, 0, 0.6);
|
|
border-radius: 40px;
|
|
text-align: center;
|
|
line-height: 72px;
|
|
color: #000000;
|
|
font-size: 28px;
|
|
}
|
|
}
|
|
}
|