Skip to content

Commit 019b18b

Browse files
committed
Fix layout overflow by setting a maximum height for the currency grid
1 parent 9e60e18 commit 019b18b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/layouts/arzLive/arzLive.layout.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,11 @@ export function ArzLiveLayout() {
3535
{jalaliMoment(updatedAt).format('jYYYY/jM/jD, HH:mm A')}
3636
</span>
3737
</div>
38-
<div className="grid grid-cols-2 gap-2 p-1 overflow-scroll overflow-x-hidden overflow-y-auto h-96 sm:grid-cols-4 md:grid-cols-5 lg:grid-cols-6 scroll-smooth">
38+
<div className="grid grid-cols-2 gap-2 p-1 overflow-scroll overflow-x-hidden overflow-y-auto max-h-96 sm:grid-cols-4 md:grid-cols-5 lg:grid-cols-6 scroll-smooth">
3939
{selectedCurrencies.map((currency, index) => (
4040
<CurrencyBox key={index} code={currency} />
4141
))}
42+
4243
<AddCurrencyBox loading={isLoading} supportCurrencies={data || []} />
4344
</div>
4445
</section>

0 commit comments

Comments
 (0)