Skip to content

Commit

Permalink
Styled create pickup event button
Browse files Browse the repository at this point in the history
  • Loading branch information
WishingWell13 committed Apr 16, 2024
1 parent ec1b24f commit 6ef1325
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/pages/admin/store/pickup/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,15 @@ const AdminPickupPage = ({ futurePickupEvents, pastPickupEvents }: AdminPickupPa
<Typography variant="h1/bold" style={{ marginRight: 'auto' }}>
Manage Pickup Events
</Typography>

<button
type="button"
className={`${styles.displayButton} ${display === 'future' && styles.active}`}
onClick={() => router.push(`${config.admin.store.pickupCreate}`)}
>
<Typography variant="h5/bold">Create New Pickup Event</Typography>
</button>
<div className={styles.displayButtons}>
<button
type="button"
className={`${styles.displayButton} ${styles.active}`}
onClick={() => router.push(`${config.admin.store.pickupCreate}`)}
>
<Typography variant="h5/bold">Create New Pickup Event</Typography>
</button>
</div>

<div className={styles.displayButtons}>
<button
Expand Down

0 comments on commit 6ef1325

Please sign in to comment.