Skip to content

Commit

Permalink
Merge pull request #2071 from fahad-aot/bugfix/FWF-3288-Heading-hiera…
Browse files Browse the repository at this point in the history
…rchy-accessibility

:accessibility:  FWF-3288: [Bugfix] Fixed Heading hierarchy
  • Loading branch information
arun-s-aot authored May 28, 2024
2 parents 6e7a760 + c154229 commit 06efe61
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ function NoTaskSelectedMessage() {
className="w-100 no-filter-img"
alt="Select a task from the List"
/>
<h3 className="text-center">
<label className="text-center select-task-text py-3">
<Translation>{(t) => t("Select a task from the List.")}</Translation>
</h3>
</label>
<p className="text-center">
<Translation>
{(t) =>
Expand Down
4 changes: 4 additions & 0 deletions forms-flow-web/src/components/ServiceFlow/ServiceFlow.scss
Original file line number Diff line number Diff line change
Expand Up @@ -420,4 +420,8 @@
width: 22rem;
max-height: 60vh;
overflow: auto;
}
.select-task-text{
font-size: 1.28571429rem;
font-weight: 700;
}
4 changes: 2 additions & 2 deletions forms-flow-web/src/containers/Head.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const Head = React.memo((props) => {
key={key}
className={`head-item ${item.name === page ? "head-active" : ""} ${key > 0 ? 'padding-left-60' : ''}`}
>
<h3 className="application-head">
<h1 className="application-head">
<i
className={`mt-1 fa fa-${item?.icon}`}
aria-hidden="true"
Expand All @@ -27,7 +27,7 @@ const Head = React.memo((props) => {
({item?.count})
</div>
) : null}
</h3>
</h1>
</div>
))}
</div>
Expand Down

0 comments on commit 06efe61

Please sign in to comment.