Skip to content

Commit 577c174

Browse files
committed
fix
1 parent 4d2e055 commit 577c174

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

app/globals.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
}
195195

196196
.top-gainers-list {
197-
@apply gap-3 sm:gap-5 mt-5 sm:grid-cols-2 md:grid-cols-1 grid;
197+
@apply gap-4 md:gap-5 mt-5 sm:grid-cols-2 lg:grid-cols-1 grid;
198198
}
199199

200200
.table-header-cell {
@@ -316,7 +316,7 @@
316316
}
317317

318318
.coins-header-row {
319-
@apply hover:bg-transparent !border-purple-600;
319+
@apply hover:bg-transparent;
320320
}
321321

322322
.coins-header-left {
@@ -328,7 +328,7 @@
328328
}
329329

330330
.coins-row {
331-
@apply text-lg hover:!bg-dark-400/30 !border-purple-600 cursor-pointer;
331+
@apply text-lg hover:!bg-dark-400/30 cursor-pointer;
332332
}
333333

334334
.coins-rank {

app/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,15 +143,15 @@ const Home = async () => {
143143
<TableCell className='pl-5 font-bold'>
144144
{category.name}
145145
</TableCell>
146-
<TableCell className='flex'>
146+
<TableCell className='flex gap-1 mr-5'>
147147
{category.top_3_coins.map((coin: string) => (
148148
<Image
149149
key={coin}
150150
src={coin}
151151
alt='Coin image'
152152
width={28}
153153
height={28}
154-
className='mr-2 rounded-full py-2'
154+
className='rounded-full py-2'
155155
/>
156156
))}
157157
</TableCell>

0 commit comments

Comments
 (0)