Skip to content

Commit 4267421

Browse files
committed
feat: style
1 parent 81fa204 commit 4267421

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

apps/evm/src/components/Notice/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export const Notice = ({
6868
{title && <p className="text-sm font-semibold">{title}</p>}
6969

7070
{!!description && (
71-
<p className={cn('text-xs', size === 'md' && 'md:text-sm')}>{description}</p>
71+
<div className={cn('text-xs', size === 'md' && 'md:text-sm')}>{description}</div>
7272
)}
7373
</div>
7474
</div>

apps/evm/src/libs/errors/ContractErrorNotice/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const ContractErrorNotice: React.FC<ContractErrorNoticeProps> = ({
2525

2626
return (
2727
<div className="space-y-2">
28-
<p className="text-sm text-white">{headline}</p>
28+
<p className="text-xs text-white md:text-sm">{headline}</p>
2929

3030
{!hasFriendlyPhrase && (
3131
<div className="rounded-lg border border-dark-grey-hover bg-background/50 px-3 py-2 font-mono text-xs break-all">

0 commit comments

Comments
 (0)