Skip to content

Commit 06a6913

Browse files
authored
Fix styling of info button in entity import card (#931)
1 parent 2017816 commit 06a6913

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

src/components/Pages/ManageWiki/Cards/EntityImport.vue

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,10 @@
4242
</v-dialog>
4343
</v-overlay>
4444
<v-card>
45-
<v-card-title>
46-
Import base entities
47-
<v-spacer />
48-
<v-btn plain right @click="showOverlay = true">
49-
<v-icon>
45+
<v-card-title class="card-title">
46+
<span>Import base entities</span>
47+
<v-btn class="info-btn" x-small text @click="showOverlay = true">
48+
<v-icon small>
5049
mdi-information-outline
5150
</v-icon>
5251
More info
@@ -119,4 +118,15 @@ export default {
119118
</script>
120119

121120
<style lang="css" scoped>
121+
.card-title {
122+
display: flex;
123+
flex-wrap: wrap-reverse;
124+
gap: 0 24px;
125+
}
126+
.card-title > span {
127+
flex-grow: 1;
128+
}
129+
.info-btn .v-icon {
130+
margin-right: 4px;
131+
}
122132
</style>

0 commit comments

Comments
 (0)