Skip to content

Commit 2e99744

Browse files
authored
Merge pull request #336 from saneesh-aot/Feature/FWF-3844-node-list-row
Feature/fwf 3844 node list row
2 parents 93a465a + 8520e2a commit 2e99744

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

forms-flow-components/src/components/CustomComponents/Radio.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
import React from "react";
22
import Form from "react-bootstrap/Form";
33

4+
45
interface RadioOption {
56
label: string;
67
value: any;
78
onClick: () => void;
89
}
9-
10+
1011
interface CustomRadioButtonProps {
1112
items: RadioOption[];
1213
dataTestid?: string;

forms-flow-theme/scss/_modal.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -507,6 +507,10 @@
507507
align-self: stretch;
508508
}
509509
}
510+
.node-list-row {
511+
padding: var(--spacer-200);
512+
border-top: 1px solid var(--ff-gray-000);
513+
}
510514

511515
//reusable multi-select
512516
.multi-select{

0 commit comments

Comments
 (0)