Skip to content

Commit

Permalink
Rework the How-To Guide to allow 3 guides in a single row (#2031)
Browse files Browse the repository at this point in the history
Fixes #2016

Change the class in `components/content/GuidesChildCard.vue` to display 3 guides in a single row instead of 2.

* Modify the class from `col-12 col-md-6` to `col-12 col-md-4` for each guide in the `NuxtLink` component.
  • Loading branch information
d3bvstack authored Dec 20, 2024
1 parent e2644ca commit 3a78e06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/content/GuidesChildCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</div>
</div>
</div>
<NuxtLink :href="item._path" class="col-12 col-md-6 mb-lg-4 mb-2" v-for="item in navigation" :key="item._path">
<NuxtLink :href="item._path" class="col-12 col-md-4 mb-lg-4 mb-2" v-for="item in navigation" :key="item._path">
<div class="card">
<div class="card-body">
<span class="card-stage" :style="`background-color: ${stages[item.stage]}`">
Expand Down

0 comments on commit 3a78e06

Please sign in to comment.