| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .search-wrapper {
- display: flex;
- align-items: center;
- margin: 12px;
- padding: 6px 8px;
- // border: 1px solid #34A76B;
- // border: 1px solid #1D6FF6;
- border-radius: 30px;
- background-color: #f7f7f7;
- .search-icon {
- flex: none;
- margin-right: 4px;
- }
- .search-input {
- flex: auto;
- // color: #fff;
- color: #191919;
- }
- }
- page {
- display: flex;
- flex-direction: column;
- height: 100vh;
- }
- .scrollable {
- height: 100%;
- }
- .list-wrapper {
- .list-title {
- font-size: 16px;
- // color: #34A76B;
- color: #1D6FF6;
- }
- }
- .tips {
- text-align: center;
- font-size: 12px;
- color: #A2AFB2;
- }
|