Files
Mujoco_WASM/python/mujoco/sysid/report/templates/row.html
T
Copybara-Service 3ec09f7296 Merge pull request #3079 from aftersomemath:sysid-pr
PiperOrigin-RevId: 868229512
Change-Id: I790bc08fc8b0745583a2f92d9ee2c5a19ba558ea
2026-02-10 11:04:12 -08:00

14 lines
528 B
HTML

<div class="row-section">
{% if description %}
<p class="section-description" style="color: var(--text-muted); margin-bottom: 1rem;">{{ description | safe }}</p>
{% endif %}
<div class="row-content"
style="display: flex; flex-direction: row; flex-wrap: wrap; gap: 1rem; justify-content: space-around;">
{% for child in child_sections %}
<div class="row-item" style="flex: 1; min-width: 300px;">
{{ child.content | safe }}
</div>
{% endfor %}
</div>
</div>