Skip to content

Commit 90b7af5

Browse files
authored
fix: layout fixes in example react-app (#130)
1 parent a87a9a4 commit 90b7af5

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

examples/react-app/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export default function App() {
9191
<a
9292
href="https://github.com/FuelLabs/fuel-connectors"
9393
target="_blank"
94-
className="block pt-4 text-green-500/80 transition-colors hover:text-green-500"
94+
className="inline-block pt-4 text-green-500/80 transition-colors hover:text-green-500"
9595
rel="noreferrer"
9696
>
9797
Build your own wallet integration

examples/react-app/src/components/notification.tsx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,8 @@ export default function Notification(props: Props) {
3333
{type === 'success' && 'Success'}
3434
{type === 'error' && 'Error'}
3535
</Toast.Title>
36-
<Toast.Close className="">
37-
<button
38-
type="button"
39-
className="rounded border border-zinc-500/10 bg-zinc-800 px-1.5 py-[1px] text-sm text-zinc-400"
40-
>
41-
Close
42-
</button>
36+
<Toast.Close className="rounded border border-zinc-500/10 bg-zinc-800 px-1.5 py-[1px] text-sm text-zinc-400">
37+
Close
4338
</Toast.Close>
4439
</div>
4540
<Toast.Description className={clsx('text-[15px] text-zinc-50/90')}>

0 commit comments

Comments
 (0)