@@ -49,7 +49,7 @@ export const ActivityTable: FC<ActivityListProps> = (props) => {
49
49
return (
50
50
< table className = { cn ( 'w-full border-collapse' , style . table ) } >
51
51
< thead >
52
- < tr className = "border-y border- background-800 font-mono text-14 text-white/60" >
52
+ < tr className = "border-background-800 text-14 border-y font-mono text-white/60" >
53
53
{ ! hideIds && < th className = { thStyle } > ID</ th > }
54
54
< th className = { thStyle } colSpan = { 2 } >
55
55
Action
@@ -136,7 +136,7 @@ const ActivityRow: FC<ActivityRowProps> = ({ activity, hideIds, index }) => {
136
136
</ td >
137
137
</ tr >
138
138
< tr
139
- className = "font-mono text-12 text-white/60"
139
+ className = "text-12 font-mono text-white/60"
140
140
style = { { animationDelay : `${ index * 50 } ms` } }
141
141
>
142
142
{ /* ID */ }
@@ -173,7 +173,7 @@ export const ActivityId: FC<ActivityIdProps> = ({ activity, size }) => {
173
173
< Link
174
174
to = "/strategy/$id"
175
175
params = { { id : id } }
176
- className = "inline-flex items-center gap-4 rounded-full bg-background-800 py-4 px-8 "
176
+ className = "bg-background-800 inline-flex items-center gap-4 rounded-full px-8 py-4"
177
177
>
178
178
< span className = { `text-${ size } ` } > { getLowestBits ( id ) } </ span >
179
179
< TokensOverlap tokens = { [ base , quote ] } size = { size + 2 } />
@@ -191,7 +191,7 @@ export const ActivityIcon: FC<ActivityIconProps> = (props) => {
191
191
const classes = cn (
192
192
'grid place-items-center rounded-full' ,
193
193
iconColor ( activity . action ) ,
194
- `h- ${ size } w -${ size } ` ,
194
+ `size-${ size } ` ,
195
195
className
196
196
) ;
197
197
return (
@@ -248,12 +248,12 @@ const ActivityPaginator = () => {
248
248
} ;
249
249
250
250
return (
251
- < tr className = "border-t border- background-800 text-14 text-white/80" >
251
+ < tr className = "border-background-800 text-14 border-t text-white/80" >
252
252
< td className = "px-24 py-16" colSpan = { 3 } >
253
253
< div className = "flex items-center gap-8" >
254
254
< label > Show results</ label >
255
255
< select
256
- className = "rounded-full border-2 border- background-800 bg-background-900 px-12 py-8"
256
+ className = "border-background-800 bg-background-900 rounded-full border-2 px-12 py-8"
257
257
name = "limit"
258
258
onChange = { changeLimit }
259
259
value = { limit }
@@ -285,7 +285,7 @@ const ActivityPaginator = () => {
285
285
< IconChevronLeft className = "h-12" />
286
286
</ button >
287
287
< p
288
- className = "flex gap-8 rounded-full border-2 border-background-800 px-12 py-8"
288
+ className = "border-background-800 flex gap-8 rounded-full border-2 px-12 py-8"
289
289
aria-label = "page position"
290
290
>
291
291
< span className = "text-white" > { currentPage } </ span >
@@ -327,7 +327,7 @@ const iconColor = (action: ActivityAction) => {
327
327
} ;
328
328
329
329
const ActionIcon : FC < ActionIconProps > = ( { action, size } ) => {
330
- const className = `h- ${ size } w -${ size } ` ;
330
+ const className = `size-${ size } ` ;
331
331
if ( action === 'create' ) return < IconCheck className = { className } /> ;
332
332
if ( action === 'transfer' ) return < IconTransfer className = { className } /> ;
333
333
if ( action === 'edit' ) return < IconEdit className = { className } /> ;
0 commit comments