Skip to content

Commit

Permalink
Merge pull request #93 from Bonymol-aot/icon_spacingIssue
Browse files Browse the repository at this point in the history
Margin fixes
  • Loading branch information
shuhaib-aot authored Nov 14, 2023
2 parents 0a4e11e + 4413070 commit ea66b2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions forms-flow-admin/src/components/roles/roles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ const Roles = React.memo((props: any) => {
>
<div className="user-list" onClick={(e) => handleClick(e, rowData)}>
<p><Translation>{(t) => t("View")}</Translation></p>
<i className="fa fa-caret-down ml-1" />
<i className="fa fa-caret-down ml-2" />
</div>
</OverlayTrigger>
);
Expand Down Expand Up @@ -535,7 +535,7 @@ const Roles = React.memo((props: any) => {
)}
</div>
<Button variant="primary" className="font-size col-xl-2 col-lg-3 col-md-3 col-sm-4" onClick={handleShowRoleModal}>
<i className="fa fa-l fa-plus-circle mr-1" /> <Translation>{(t) => t("Create New Role")}</Translation>
<i className="fa fa-l fa-plus-circle mr-2" /> <Translation>{(t) => t("Create New Role")}</Translation>
</Button>
</div>
{!props?.loading ? (
Expand Down
2 changes: 1 addition & 1 deletion forms-flow-admin/src/components/users/users.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ const Users = React.memo((props: any) => {
}
>
<Button variant="primary" onClick={() => addRole(rowData)}>
<i className="fa fa-l fa-plus-circle mr-1" /> <Translation>{(t) => t("Add Role")}</Translation>
<i className="fa fa-l fa-plus-circle mr-2" /> <Translation>{(t) => t("Add Role")}</Translation>
</Button>
</OverlayTrigger>
);
Expand Down

0 comments on commit ea66b2f

Please sign in to comment.