Skip to content

Commit 99dec9c

Browse files
committed
Little correction
1 parent b2fdeb2 commit 99dec9c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/components/InfoBanner.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ const InfoBanner = ({
3535
"rounded-sm p-6 sm:flex-row",
3636
shouldCenter ? "max-w-[55rem]" : "max-w-full",
3737
isWarning ? "bg-orange-200" : "bg-indigo-100",
38-
!onClick && "text-gray-600",
3938
className
4039
)}
4140
onClick={onClick}

src/pages/dapps.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ const StyledH3 = (props: ChildOnlyProp) => (
295295
)
296296

297297
const StyledInfoBanner = (props: ComponentPropsWithRef<typeof InfoBanner>) => (
298-
<InfoBanner className="w-1/2" {...props} />
298+
<InfoBanner className="lg:w-1/2" {...props} />
299299
)
300300

301301
const Column = (props: ChildOnlyProp) => (

0 commit comments

Comments
 (0)