1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- .searchGroup {
- padding: 0 20px;
- display: flex;
- .searchSelect2 {
- width: 100px;
- margin-right: 12px;
- }
- .searchSelect {
- padding: 0 0 20px;
- display: flex;
- justify-content: flex-start;
- gap: 0px 16px;
- }
- :global {
- .n-base-selection,
- .n-input {
- border-radius: 8px;
- min-height: 40px;
- height: 40px;
- font-size: max(15px, 12Px);
- --n-height: 40px !important;
- }
- }
- }
- .inputSearch {
- :global {
- .n-input-wrapper {
- padding-left: 12px;
- padding-right: 4px;
- }
- }
- .searchBtn {
- height: 34px;
- border-radius: 8px;
- font-size: 15px;
- font-weight: 500;
- }
- }
- .btnType {
- gap: 0px 6px !important;
- :global {
- .n-button {
- height: 28px;
- padding: 0 13px;
- font-size: 15px;
- color: rgba(0, 0, 0, .6);
- &.n-button--primary-type {
- font-weight: bold;
- color: #fff;
- }
- }
- }
- }
|