Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FWF-3333:[Bugfix] Resolved alignment issue #2053

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const CreateTemplateConfirmModal = ({modalOpen,handleModalChange,onConfirm}) =>
</Modal.Title>
</div>

<div>
<div className="d-flex align-items-center">
<button
type="button"
className="btn-close"
Expand All @@ -35,7 +35,7 @@ const CreateTemplateConfirmModal = ({modalOpen,handleModalChange,onConfirm}) =>

<Modal.Body>
<div className="d-flex align-items-start p-3">
<i className="fa fa-info-circle text-primary me-2"></i>
<i className="fa fa-info-circle text-primary pt-1 me-2"></i>
<span >
{t("Do you want to create a duplicate form and associated workflow from existing form ?")}
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const FormHistoryModal = ({ historyModal, handleModalChange, gotoEdit }) => {
</Modal.Title>
</div>

<div>
<div className="d-flex align-items-center">
<button
type="button"
className="btn-close"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const SaveAsNewVersionConfirmationModal = ({modalOpen,handleModalChange,onConfir
</Modal.Title>
</div>

<div>
<div className="d-flex align-items-center">
<button
type="button"
className="btn-close"
Expand All @@ -34,7 +34,7 @@ const SaveAsNewVersionConfirmationModal = ({modalOpen,handleModalChange,onConfir

<Modal.Body>
<div className="d-flex align-items-start p-3">
<i className="fa fa-info-circle text-primary me-2"></i>
<i className="fa fa-info-circle text-primary mt-1 me-2"></i>
<span >
{t("This will create a new version of the form without changing the path name but with new form id.")}
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -650,13 +650,13 @@ export default function CreateNewFilterDrawer({
</h5>
<div className="d-flex align-items-center mt-1">
<input
className="mr-6"
className="mr-6 mt-3"
type="checkbox"
checked={isMyTasksEnabled}
onChange={(e) => setIsMyTasksEnabled(e.target.checked)}
title={t("Show only current user assigned task")}
/>
<h5 className="assigned-user">
<h5 className="assigned-user mt-3">
<Translation>
{(t) => t("Show only current user assigned task")}
</Translation>
Expand Down
Loading