Files
Automaaval/dist/zacatraz/_internal/panel/layout/flexbox.html
T

8 lines
388 B
HTML
Raw Normal View History

2026-03-14 21:48:05 +00:00
<div id="flexbox" style="display: flex; flex-wrap: ${flex_wrap}; justify-content: ${justify_content}; flex-direction: ${flex_direction}; align-content: ${align_content}; align-items: ${align_items}; gap: ${gap}; height: 100%;">
{% for obj in objects %}
<div id="flex-item-{{ loop.index0 }}" style="display: contents;">
${objects[{{ loop.index0 }}]}
</div>
{% endfor %}
</div>