searc-list.scss 629 B

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