index.module.less 832 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .TheSearch {
  2. border-radius: 20px !important;
  3. &.noBorder {
  4. --n-border: none !important;
  5. }
  6. :global {
  7. .n-input-wrapper {
  8. padding-left: 12px;
  9. padding-right: 4px;
  10. height: 42px !important;
  11. }
  12. .n-button {
  13. height: 34px;
  14. font-size: max(16px, 13Px);
  15. font-weight: 500;
  16. width: auto;
  17. opacity: 0.7;
  18. }
  19. .n-input__placeholder {
  20. font-size: max(15px, 13Px);
  21. }
  22. }
  23. .active {
  24. display: none;
  25. }
  26. .active,
  27. .default {
  28. width: max(16px, 14Px);
  29. height: max(16px, 14Px);
  30. }
  31. &:global(.n-input--focus) {
  32. .active {
  33. display: block;
  34. }
  35. .default {
  36. display: none;
  37. }
  38. :global {
  39. .n-button {
  40. opacity: 1;
  41. }
  42. }
  43. }
  44. &:hover {
  45. :global {
  46. .n-button {
  47. opacity: 1;
  48. }
  49. }
  50. }
  51. }