Skip to content

Commit 81b91e2

Browse files
committed
fix: minor fixes to TopInfo component
1 parent 0e99882 commit 81b91e2

File tree

1 file changed

+2
-2
lines changed
  • web/src/components/InformationCards/RegistryInformationCard

1 file changed

+2
-2
lines changed

web/src/components/InformationCards/RegistryInformationCard/TopInfo.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const TopInfo: React.FC<ITopInfo> = ({
5757
{isUndefined(description) ? (
5858
<Skeleton width="90%" height={21} />
5959
) : (
60-
<p className="m-0 text-klerosUIComponentsSecondaryText no-underline hover:underline">{description}</p>
60+
<p className="m-0 text-klerosUIComponentsSecondaryText">{description}</p>
6161
)}
6262
</div>
6363
<div
@@ -67,7 +67,7 @@ const TopInfo: React.FC<ITopInfo> = ({
6767
{id !== "" ? (
6868
<Copiable copiableContent={id} info="Copy Registry Address" iconPlacement="left">
6969
<a
70-
className="text-klerosUIComponentsPrimaryBlue"
70+
className="text-klerosUIComponentsPrimaryBlue no-underline hover:underline"
7171
href={`${SUPPORTED_CHAINS[DEFAULT_CHAIN].blockExplorers?.default.url}/address/${id}`}
7272
target="_blank"
7373
rel="noreferrer"

0 commit comments

Comments
 (0)