1234567891011121314151617181920212223242526272829303132333435363738 |
- .TheSearch {
- border-radius: 20px !important;
- :global {
- .n-input-wrapper {
- padding-left: 12px;
- padding-right: 4px;
- height: 42px !important;
- }
- .n-button {
- height: 34px;
- font-size: 15px;
- font-weight: 500;
- width: auto;
- }
- }
- .active {
- display: none;
- }
- &:global(.n-input--focus) {
- .active {
- display: block;
- }
- .default {
- display: none;
- }
- :global {
- .n-button {
- opacity: 1;
- }
- }
- }
- }
|