.barContent {
|
width: 100%;
|
height: 600px;
|
display: flex;
|
justify-content: flex-start;
|
align-items: flex-start;
|
flex-direction: column;
|
.barHeader {
|
display: flex;
|
/* justify-content: space-between; */
|
align-items: center;
|
width: 100%;
|
margin-bottom: 10px;
|
.search {
|
margin-left: auto;
|
}
|
}
|
.barSearch {
|
width: 300px;
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
column-gap: 6px;
|
.searchBtn {
|
color: #fff;
|
height: 26px !important;
|
}
|
}
|
.tableContent {
|
width: 100%;
|
height: calc(100% - 90px);
|
.withoutBtn {
|
color: #000;
|
}
|
}
|
.add {
|
width: 22px;
|
height: 22px;
|
background-image: url(@/assets/svg/add.svg);
|
background-size: 20px 20px;
|
background-position: center;
|
background-color: #8b9ca4;
|
border-radius: 4px;
|
margin-right: 2px;
|
cursor: pointer;
|
}
|
}
|
|
// .without-picker-popper_content.is-light {
|
// background-color: var(--el-color-white) !important;
|
// border: 1px solid var(--el-datepicker-border-color) !important;
|
// box-shadow: var(--el-box-shadow-light) !important;
|
// padding: 0 !important;
|
// max-width: inherit !important;
|
|
// .cs-popper__arrow:before {
|
// background: var(--el-color-white) !important;
|
// }
|
// }
|