1
0
Fork 0
HANYANG_MES/hymes_scss/inc/css/scss/component/_search.scss

107 lines
1.7 KiB
SCSS

.table-header{
width: 100%;
margin-top: 25px;
&>div{
display: flex;
justify-content: space-between;
align-items: center;
gap: 100px;
height: 84px;
overflow-x: auto;
border-radius: 5px;
border: 1px solid $gray-002;
background: #FAFAFA;
}
.search-container{
display: flex;
justify-content: start;
gap: 20px;
font-size: 13px;
.input-container{
&.checkbox-container{
text-align: center;
align-items: center;
label{
display: inline-block;
width: 50px;
}
.input-box{
justify-content: center;
height: 32px;
align-items: center;
input{
display: inline-block;
box-sizing: border-box;
width: 14px;
height: 14px;
}
}
}
&>div{
display: flex;
gap: 2px;
}
}
.input-box{
position:relative;
svg{
position: absolute;
width: 1em;
height: 1em;
right: 10px;
top: 10px;
color: $blue-005;
cursor: pointer;
}
input, select{
border-radius: 3px;
border: 1px solid $gray-003;
background: #FFF;
height: 32px;
width: 140px;
padding: 0 10px;
box-sizing: border-box;
}
}
}
}
.table-header .button-container{
width: 100%;
display: flex;
justify-content: flex-end;
}
.button-box{
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
button{
padding: 7px 12px;
}
}
// table container
.table-container .button-box{
justify-content: flex-end;
}