1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- .TheSearch {
- border-radius: 20px !important;
- &.noBorder {
- --n-border: none !important;
- }
- :global {
- .n-input-wrapper {
- padding-left: 12px;
- padding-right: 4px;
- height: 42px !important;
- }
- .n-button {
- height: 34px;
- font-size: max(16px, 13Px);
- font-weight: 500;
- width: auto;
- opacity: 0.7;
- }
- .n-input__placeholder {
- font-size: max(15px, 13Px);
- }
- }
- .active {
- display: none;
- }
- .active,
- .default {
- width: max(16px, 14Px);
- height: max(16px, 14Px);
- }
- &:global(.n-input--focus) {
- .active {
- display: block;
- }
- .default {
- display: none;
- }
- :global {
- .n-button {
- opacity: 1;
- }
- }
- }
- &:hover {
- :global {
- .n-button {
- opacity: 1;
- }
- }
- }
- }
|