Skip to content

Commit

Permalink
💄 Allow long words to wrap in steps nav
Browse files Browse the repository at this point in the history
Without wrapping, the delete icon cannot be reached to delete a step
because the step name is pushing it behind the form step details.
  • Loading branch information
sergei-maertens committed Nov 29, 2024
1 parent 2eeca5a commit 88ed3e7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ const FormStepNavItem = ({
onClick={() => onReorder('down')}
/>
</div>
<button type="button" onClick={onActivate} className="button button--plain">
<button
type="button"
onClick={onActivate}
className="button button--plain list__item-text list__item-text--allow-wrap"
>
{hasErrors ? <ErrorIcon text={iconTitle} extraClassname="icon icon--danger" /> : null}
{name}
</button>
Expand Down
7 changes: 7 additions & 0 deletions src/openforms/scss/components/admin/_list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@
align-items: center;
}
}

&__item-text {
&--allow-wrap {
word-break: break-all;
overflow-wrap: anywhere;
}
}
}

.list__item--active {
Expand Down

0 comments on commit 88ed3e7

Please sign in to comment.