Skip to content

Commit

Permalink
fix(theme): make features section layout consistent (#2382)
Browse files Browse the repository at this point in the history
Co-authored-by: Divyansh Singh <40380293+brc-dd@users.noreply.github.com>
  • Loading branch information
zonemeen and brc-dd committed May 19, 2023
1 parent 7fe199b commit 26f21d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/theme-default/components/VPFeatures.vue
Expand Up @@ -26,7 +26,7 @@ const grid = computed(() => {
return 'grid-3'
} else if (length % 3 === 0) {
return 'grid-6'
} else if (length % 2 === 0) {
} else if (length > 3) {
return 'grid-4'
}
})
Expand Down

0 comments on commit 26f21d9

Please sign in to comment.