fix: vertical spacing between ProjectStep cards

close #91
This commit is contained in:
Timothée Goguely 2025-01-08 17:09:56 +01:00
parent af364d6667
commit 20928e45a2

View file

@ -7,10 +7,8 @@
<h2 :id="step.id">
<span :data-icon="step.id">{{ step.label }}</span>
</h2>
<div class="cards | flow">
<div ref="card-node">
<component :is="cardsMap[step.id]" :step="step" />
</div>
<div ref="card-node" class="cards flow">
<component :is="cardsMap[step.id]" :step="step" />
</div>
</section>
</template>