@@ -148,218 +148,3 @@ a {
148148 opacity : 1 ;
149149 }
150150}
151-
152- .app__page-error-message {
153- margin : 0 auto ;
154- max-width : toRem (450 );
155- padding : toRem (24 );
156- }
157-
158- .app__page-no-data-message {
159- margin : 0 auto ;
160- max-width : toRem (450 );
161- padding : toRem (24 );
162- }
163-
164- .app__page-loader {
165- margin : 0 auto ;
166- max-width : toRem (450 );
167- padding : toRem (24 );
168- }
169-
170- .app__pools-page-filters {
171- display : flex ;
172- justify-content : space-between ;
173- align-items : center ;
174- gap : toRem (24 );
175- margin-bottom : toRem (24 );
176-
177- .app__pools-page-filters-input {
178- max-width : toRem (486 );
179-
180- @include respond-to (xsmall) {
181- max-width : toRem (200 );
182- }
183- }
184-
185- .app__pools-page-filters-input-icon {
186- width : clamp (#{toRem (20 )} , #{toRem (20 )} , #{toRem (20 )} );
187- height : clamp (#{toRem (20 )} , #{toRem (20 )} , #{toRem (20 )} );
188- color : var (--text-primary-light );
189- }
190-
191- .app__pools-page-filters-select {
192- max-width : toRem (210 );
193- }
194-
195- @include respond-to (small ) {
196- flex-direction : column ;
197- align-items : stretch ;
198- }
199- }
200-
201- .app__pool-card {
202- position : relative ;
203- display : flex ;
204- flex-direction : column ;
205-
206- @include card (' border' );
207-
208- padding : 0 ;
209-
210- .app__pool-card-head {
211- display : flex ;
212- justify-content : space-between ;
213- align-items : center ;
214- padding : toRem (18 );
215- border-bottom : toRem (1 ) solid var (--primary-light );
216- }
217-
218- .app__pool-card-appearance {
219- display : flex ;
220- align-items : center ;
221- gap : toRem (12 );
222- }
223-
224- .app__pool-card-appearance-img {
225- width : clamp (#{toRem (62 )} , #{toRem (62 )} , #{toRem (62 )} );
226- height : clamp (#{toRem (62 )} , #{toRem (62 )} , #{toRem (62 )} );
227-
228- @include respond-to (xsmall) {
229- width : clamp (#{toRem (28 )} , #{toRem (28 )} , #{toRem (28 )} );
230- height : clamp (#{toRem (28 )} , #{toRem (28 )} , #{toRem (28 )} );
231- }
232- }
233-
234- .app__pool-card-appearance-details {
235- display : flex ;
236- flex-direction : column ;
237- gap : toRem (2 );
238- font-size : toRem (16 );
239- line-height : 1.5 ;
240- font-weight : 500 ;
241- letter-spacing : toRem (0.15 );
242- }
243-
244- .app__pool-card-appearance-name {
245- font : inherit ;
246- color : var (--text-primary-main );
247-
248- @include respond-to (xsmall) {
249- font-size : toRem (12 );
250- }
251- }
252-
253- .app__pool-card-appearance-symbol {
254- font : inherit ;
255- color : var (--text-secondary-main );
256- }
257-
258- .app__pool-card-head-subtotal {
259- display : flex ;
260- flex-direction : column ;
261- text-align : right ;
262- }
263-
264- .app__pool-card-head-subtotal-value-wrp {
265- display : flex ;
266- justify-content : flex-end ;
267- align-items : center ;
268- gap : toRem (4 );
269- }
270-
271- .app__pool-card-head-subtotal-value-text {
272- text-align : right ;
273- font-weight : 500 ;
274- font-size : toRem (16 );
275- line-height : 1.5 ;
276- letter-spacing : toRem (0.15 );
277- color : var (--text-primary-main );
278- }
279-
280- .app__pool-card-head-subtotal-label-wrp {
281- display : flex ;
282- align-items : center ;
283- gap : toRem (4 );
284- }
285-
286- .app__pool-card-head-subtotal-label-text {
287- font-size : toRem (14 );
288- line-height : 1.43 ;
289- letter-spacing : toRem (0.25 );
290- color : var (--secondary-main );
291- }
292-
293- .app__pool-card-body {
294- padding : toRem (18 );
295- }
296-
297- .app__pool-card-metadata {
298- display : flex ;
299- flex-direction : column ;
300- gap : toRem (20 );
301- }
302-
303- .app__pool-card-metadata-row {
304- display : flex ;
305- justify-content : space-between ;
306- }
307-
308- .app__pool-card-metadata-lbl-wrp {
309- display : flex ;
310- align-items : center ;
311- gap : toRem (6 );
312- }
313-
314- .app__pool-card-metadata-lbl-text {
315- font-size : toRem (14 );
316- line-height : 1.43 ;
317- letter-spacing : toRem (0.25 );
318- color : var (--text-secondary-main );
319- }
320-
321- .app__pool-card-metadata-value-wrp {
322- display : flex ;
323- align-items : center ;
324- gap : toRem (6 );
325-
326- & --error {
327- color : var (--error-main );
328- }
329-
330- & --success {
331- color : var (--success-main );
332- }
333- }
334-
335- .app__pool-card-metadata-value-text {
336- font-size : toRem (14 );
337- line-height : 1.43 ;
338- text-align : right ;
339- letter-spacing : toRem (0.25 );
340- color : var (--text-secondary-dark );
341- }
342-
343- .app__pool-card-metadata-value-icon {
344- width : clamp (#{toRem (20 )} , #{toRem (20 )} , #{toRem (20 )} );
345- height : clamp (#{toRem (20 )} , #{toRem (20 )} , #{toRem (20 )} );
346- }
347-
348- .app__pool-card-link {
349- position : absolute ;
350- top : 0 ;
351- right : 0 ;
352- bottom : 0 ;
353- left : 0 ;
354- }
355- }
356-
357- .app__marketplace-list {
358- display : grid ;
359- grid-template-columns : repeat (3 , 1fr );
360- grid-gap : toRem (21 );
361-
362- @include respond-to (xmedium) {
363- grid-template-columns : 1fr ;
364- }
365- }
0 commit comments