-
<div style="display: flex; align-items: center; ">
<span style="font-size: 1.25rem; font-weight: 600; width: 70%;">
{pml.module.name}
</span>
<span style="display: flex; justify-content: flex-end; width: 30%;">
<OverflowMenu>
<OverflowMenuItem requireTitle={false} onclick={() => openConfigModal(pml)}>
<Settings /> Configure
</OverflowMenuItem>
<OverflowMenuItem danger requireTitle={false} onclick={() => deletePML(pml.id)}>
<TrashCan /> Remove from project
</OverflowMenuItem>
</OverflowMenu>
</span>
</div>How do I increase the width of the menu box? |
Beta Was this translation helpful? Give feedback.
Answered by
metonym
Nov 3, 2024
Replies: 1 comment
-
|
Try using |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
metonym
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Try using
whitespace: nowraporflex: nowrapto prevent the item text from wrapping.