| 123456789101112131415161718192021222324252627282930313233343536 |
- .TheSearch {
- border-radius: 20px !important;
- :global {
- .n-input-wrapper {
- padding-right: 4px;
- height: 42px;
- .n-input__input-el {
- height: 100%;
- }
- }
- .n-button {
- width: 72px;
- height: 34px;
- opacity: .8;
- }
- }
- .active{
- display: none;
- }
- &:global(.n-input--focus){
- .active{
- display: block;
- }
- .default{
- display: none;
- }
- :global{
- .n-button{
- opacity: 1;
- }
- }
- }
- }
|