Skip to content
Discussion options

You must be logged in to vote

Hi there!

I see you are using .ui.fluid.popup on your menu, but "A fluid popup will take up the entire width of its offset container" (https://fomantic-ui.com/modules/popup.html#fluid). In your case .right.menu.
The main problem with dropdown item width is this word: "TECHNOLOGIES" is too big to fit inside column, so it overflows the column padding.

With this said, I saw two ways to solve it.

  1. Overflow
    Solution? You can use overflow-wrap: break-word; or some overflow-x: property
    This fix the problem but is not prity, so I searched in docs and found flowing (https://fomantic-ui.com/modules/popup.html#flowing)

  2. Flowing
    If you use this, popup will fit content with no min width. With bigger…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by lubber-de
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #1551 on October 06, 2020 21:12.