-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Closed
Description
This is about Bulma.
Overview of the problem
Description
Forms rendered inside a <details>
inside a <nav>
don't render correctly. If I remove the <details>
and <summary>
tag then the form renders correctly. Specifically, the broken form extends past the right hand side of the containing div
.
In the screenshot you can see both a working and non-working form:
The broken form is configured:
<nav className="panel">
<details open>
<summary className="panel-heading">Forms look good inside collapsible panels</summary>
<p className="panel-header">
<div className="panel-block">
<form>...</.form>
</div>
</p>
</details>
</nav>
The working form is configured:
<nav className="panel">
<p className="panel-heading">Forms look good inside static panels</p>
<p className="panel-header">
<div className="panel-block">
<form>...</.form>
</div>
</p>
</nav>
Metadata
Metadata
Assignees
Labels
No labels