35 lines
800 B
SCSS
35 lines
800 B
SCSS
.main{
|
|
background-color: $color_bg_one;
|
|
min-height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
.search{
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 20px 20px 30px 20px;
|
|
box-sizing: border-box;
|
|
align-items: center;
|
|
.search_collect{
|
|
font-size: 26px;
|
|
border: 2px solid #007AFF;
|
|
color: #007AFF;
|
|
border-radius: 50px;
|
|
width: 132px;
|
|
height: 44px;
|
|
text-align: center;
|
|
line-height: 44px;
|
|
}
|
|
}
|
|
.products{
|
|
flex:1;
|
|
height: 0;
|
|
}
|
|
.movable{
|
|
position: fixed;
|
|
height: 100vh;
|
|
width: 100vh;
|
|
z-index: 0;
|
|
}
|
|
|
|
} |