Nested paragraph with inline form widget and draggable breaks the table
>>> [!note] Migrated issue
<!-- Drupal.org comment -->
<!-- Migrated from issue #3515484. -->
Reported by: [arwillame](https://www.drupal.org/user/3726366)
Related to !620
>>>
<h3 id="summary-problem-motivation">Problem/Motivation</h3>
<p>I'm using nested paragraph with inline entity form complex widget.<br>
When have multiple paragraphs, the table does not goes as far as it should and then my actions buttons are bellow the paragraph title instead of being at the right under the correct column. </p>
<p><img src="https://www.drupal.org/files/issues/2025-03-26/Capture%20d%E2%80%99e%CC%81cran%202025-03-26%20a%CC%80%2012.37.29.png" alt="Screenshot of error"></p>
<h4 id="summary-steps-reproduce">Steps to reproduce</h4>
<p>Use nested paragraph with inline entity form complex widget.<br>
Add multiple paragraphs and see the issue.</p>
<h3 id="summary-proposed-resolution">Proposed resolution</h3>
<p>It seem to be linked to the class "ief-tabledrag-handle tabledrag-cell" </p>
<p>In the paragraph.scss file, if we replace the </p>
<pre>.draggable { <br> > td {<br> position: relative;<br> display: block;<br> flex: 0 0 auto;<br> }<br>}</pre><p>
with <code>display: table-cell</code><br>
It seem to fix the issue for me </p>
issue