Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/providers/ThemeProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function ThemeProviders({ children }: { children: React.ReactNode }) {
<ToastContainer
position="bottom-right"
toastClassName="bg-[#fff] dark:bg-[#202426] text-[#000] dark:text-[#fff]"
toastStyle={{ borderRadius: '3px', fontFamily: 'Zen Kaku Gothic New', fontSize: '16px' }}
toastStyle={{ borderRadius: '3px', fontSize: '16px' }}
/>
</NextThemesProvider>
);
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useTransactionWithToast.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export function useTransactionWithToast({

const renderToastContent = useCallback(
(title: string, description?: string) => (
<div className="p-2">
<div className="p-2 font-zen">
<div>{title}</div>
{description && <div className="mb-2 mt-1 text-sm">{description}</div>}
<TxHashDisplay hash={hash} />
Expand Down