We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba7a354 commit b7ee4edCopy full SHA for b7ee4ed
src/app/_components/eligibility/EligibilityActions.tsx
@@ -57,7 +57,13 @@ const EligibilityActions = ({ actions }: EligibilityActionProps): (JSX.Element |
57
case ActionDisplayType.actionLinkWithInfo: {
58
const info = action.content && <InfoText content={action.content} delineator={false} />;
59
const link = action.button && (
60
- <ActionLink asElement="a" href={action.button.url.href} rel="noopener" target="_blank">
+ <ActionLink
61
+ className={action.delineator ? "nhsuk-u-margin-bottom-0" : undefined}
62
+ asElement="a"
63
+ href={action.button.url.href}
64
+ rel="noopener"
65
+ target="_blank"
66
+ >
67
{action.button.label}
68
</ActionLink>
69
);
0 commit comments