searc-list.scss 595 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .search-wrapper {
  2. display: flex;
  3. align-items: center;
  4. margin: 12px;
  5. padding: 4px 8px;
  6. // border: 1px solid #34A76B;
  7. border: 1px solid #1D6FF6;
  8. border-radius: 8px;
  9. .search-icon {
  10. flex: none;
  11. margin-right: 4px;
  12. }
  13. .search-input {
  14. flex: auto;
  15. // color: #fff;
  16. color: #191919;
  17. }
  18. }
  19. page {
  20. display: flex;
  21. flex-direction: column;
  22. height: 100vh;
  23. }
  24. .scrollable {
  25. height: 100%;
  26. }
  27. .list-wrapper {
  28. .list-title {
  29. font-size: 16px;
  30. // color: #34A76B;
  31. color: #1D6FF6;
  32. }
  33. }
  34. .tips {
  35. text-align: center;
  36. font-size: 12px;
  37. color: #A2AFB2;
  38. }