Skip to content

Commit

Permalink
Update card padding
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKostka committed Nov 18, 2024
1 parent c3f5513 commit 7f3c7c5
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 13 deletions.
4 changes: 2 additions & 2 deletions src/components/Pages/ManageWiki/Features/EntityMapping.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<v-col>
<v-col class="card-column">
<v-card>
<v-card-title>Mapping Properties to Wikidata</v-card-title>
<v-card-text>
Expand All @@ -19,7 +19,7 @@
/>
</v-card>
</v-col>
<v-col>
<v-col class="card-column">
<v-card>
<v-card-title>Mapping Items to Wikidata</v-card-title>
<v-card-text>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Pages/ManageWiki/Features/Lexeme.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<v-col>
<v-col class="card-column">
<v-form ref="form" v-model="valid" @submit="handleSubmit" id="formLexeme">
<v-card class="padding">
<v-card-title>Lexeme</v-card-title>
Expand Down
7 changes: 6 additions & 1 deletion src/components/Pages/ManageWiki/TabSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,11 @@ export default {
</script>

<style scoped>
.tab-container >>> .card-column {
padding: 8px;
}
.tab-container >>> .col {
max-width: 740px;
padding: 12px;
}
.tab-container >>> .v-card {
min-width: 288px;
Expand All @@ -61,4 +63,7 @@ export default {
padding-right: 16px;
padding-bottom: 16px;
}
.v-tabs {
padding-bottom: 4px;
}
</style>
18 changes: 9 additions & 9 deletions src/components/Pages/ManageWiki/Tabs/ManageWiki.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,52 +5,52 @@
<!--Col 1-->
<v-col>
<v-row>
<v-col>
<v-col class="card-column">
<Details :wikiId="this.wikiId"/>
</v-col>
</v-row>
<v-row>
<v-col>
<v-col class="card-column">
<Skin :wikiId="this.wikiId"/>
</v-col>
</v-row>
<v-row>
<v-col>
<v-col class="card-column">
<Logo :wikiId="this.wikiId"/>
</v-col>
</v-row>
<v-row>
<v-col>
<v-col class="card-column">
<QuestyCaptcha :wikiId="this.wikiId"/>
</v-col>
</v-row>
</v-col>
<!--Col 2-->
<v-col>
<v-row>
<v-col>
<v-col class="card-column">
<Registration :wikiId="this.wikiId"/>
</v-col>
</v-row>
<v-row>
<v-col>
<v-col class="card-column">
<Wikibase :wikiId="this.wikiId"/>
</v-col>
</v-row>
<v-row>
<v-col>
<v-col class="card-column">
<EntityImport :wikiId="this.wikiId"/>
</v-col>
</v-row>
</v-col>
</v-row>
<v-row>
<v-col>
<v-col class="card-column">
<Delete :wikiId="this.wikiId"/>
</v-col>
</v-row>
<v-row v-if="wikiId == 0">
<v-col>
<v-col class="card-column">
<v-card>
<v-toolbar dark color="primary">
<v-toolbar-title>Wiki Management</v-toolbar-title>
Expand Down

0 comments on commit 7f3c7c5

Please sign in to comment.