index.module.less 632 B

123456789101112131415161718192021222324252627282930313233343536
  1. .TheSearch {
  2. border-radius: 20px !important;
  3. :global {
  4. .n-input-wrapper {
  5. padding-right: 4px;
  6. height: 42px;
  7. .n-input__input-el {
  8. height: 100%;
  9. }
  10. }
  11. .n-button {
  12. width: 72px;
  13. height: 34px;
  14. opacity: .8;
  15. }
  16. }
  17. .active{
  18. display: none;
  19. }
  20. &:global(.n-input--focus){
  21. .active{
  22. display: block;
  23. }
  24. .default{
  25. display: none;
  26. }
  27. :global{
  28. .n-button{
  29. opacity: 1;
  30. }
  31. }
  32. }
  33. }