2023-12-26 11:21:51 +08:00

27 lines
485 B
Plaintext

@import '~antd/es/style/themes/default.less';
.headerSearch {
display: inline-flex;
align-items: center;
z-index: 999;
.input {
width: 0;
min-width: 0;
overflow: hidden;
background: transparent;
border-radius: 0;
transition: width 0.3s, margin-left 0.3s;
:global(.ant-select-selection) {
background: transparent;
}
input {
box-shadow: none !important;
}
&.show {
width: 210px;
margin-left: 8px;
}
}
}