Skip to content

Commit

Permalink
Fix styling of info button in entity import card (#931)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKostka authored Dec 9, 2024
1 parent 2017816 commit 06a6913
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions src/components/Pages/ManageWiki/Cards/EntityImport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,10 @@
</v-dialog>
</v-overlay>
<v-card>
<v-card-title>
Import base entities
<v-spacer />
<v-btn plain right @click="showOverlay = true">
<v-icon>
<v-card-title class="card-title">
<span>Import base entities</span>
<v-btn class="info-btn" x-small text @click="showOverlay = true">
<v-icon small>
mdi-information-outline
</v-icon>
More info
Expand Down Expand Up @@ -119,4 +118,15 @@ export default {
</script>

<style lang="css" scoped>
.card-title {
display: flex;
flex-wrap: wrap-reverse;
gap: 0 24px;
}
.card-title > span {
flex-grow: 1;
}
.info-btn .v-icon {
margin-right: 4px;
}
</style>

0 comments on commit 06a6913

Please sign in to comment.