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