Skip to content

Commit

Permalink
Add margin on wintersday item page between item table and login notic…
Browse files Browse the repository at this point in the history
…e for logged out users
  • Loading branch information
darthmaim committed Dec 10, 2024
1 parent 71541a0 commit 0a10c38
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/web/app/[language]/festival/wintersday/(index)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ export default async function WintersdayPage() {
<ItemTable query={{ where: { id: { in: itemIds }}}} defaultColumns={['item', 'rarity', 'type', 'buyPrice', 'buyPriceTrend', 'sellPrice', 'sellPriceTrend']}/>
</ItemTableContext>

<div style={{ marginTop: 32 }}/>

<Gw2Accounts requiredScopes={requiredScopes} loading={null} loginMessage={<Trans id="festival.wintersday.items.login"/>} authorizationMessage={<Trans id="festival.wintersday.items.authorize"/>}>
{items.map((item) => (
<Fragment key={item.id}>
Expand Down

0 comments on commit 0a10c38

Please sign in to comment.