Skip to content

Commit

Permalink
Consistent width for wiki creation card (#925)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKostka authored Nov 19, 2024
1 parent 4af42d7 commit 3c2c51b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/Pages/CreateWiki.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<v-main>
<v-container class="fill-height" fluid >
<v-row align="center" justify="center">
<v-col cols="12" sm="8" md="4">
<v-col class="card-column">
<CreateWikiCard title="Create a Wiki" buttonText="Create Wiki"/>
</v-col>
</v-row>
Expand All @@ -24,5 +24,8 @@ export default {
}
</script>

<style>
<style lang="css" scoped>
.card-column {
max-width: 387px;
}
</style>

0 comments on commit 3c2c51b

Please sign in to comment.