diff --git a/centrifuge-app/src/components/IssuerSection.tsx b/centrifuge-app/src/components/IssuerSection.tsx index ba2d85c7ec..edf56bc067 100644 --- a/centrifuge-app/src/components/IssuerSection.tsx +++ b/centrifuge-app/src/components/IssuerSection.tsx @@ -28,6 +28,10 @@ type IssuerSectionProps = { metadata: Partial | undefined } +const ButtonSections = styled(RouterTextLink)` + text-decoration: unset; +` + const StyledBox = styled(Box)` padding: 24px; &:hover { @@ -36,7 +40,10 @@ const StyledBox = styled(Box)` } ` -const HoverBox = styled(StyledBox)` +const StyledRouterTextLink = styled(RouterTextLink)` + color: white; + text-decoration: unset; + font-size: 14px; padding: 8px 22px; background-color: ${SUBTLE_GRAY}; border: 3px solid transparent; @@ -45,12 +52,6 @@ const HoverBox = styled(StyledBox)` border-radius: 4px; border-color: #91969b1a; } -` - -const StyledRouterTextLink = styled(RouterTextLink)` - color: white; - text-decoration: unset; - font-size: 14px; :active { color: white; } @@ -98,14 +99,12 @@ export function ReportDetails({ metadata }: IssuerSectionProps) { Reports - - View all - + View all {reportLinks.map((link, i) => ( - + - + ))}