index.module.less 641 B

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