Skip to content

Commit

Permalink
fix: Fix Page Template Width - MEED-6942 - Meeds-io/meeds#2063 (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
boubaker authored May 30, 2024
1 parent efda5c1 commit ed6f626
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,14 @@
align="left">
<v-card
v-sanitized-html="name"
class="text-truncate transparent"
class="transparent"
flat
@click="$root.$emit('page-templates-illustration-preview', illustrationSrc)" />
</td>
<!-- description -->
<td
v-if="!$root.isMobile"
align="left"
class="text-truncate"
v-sanitized-html="description"></td>
<td
v-if="!$root.isMobile"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@ export default {
align: 'left',
sortable: true,
class: 'page-template-name-header',
width: '20%'
width: 'auto'
},
{
text: this.$t('pageTemplates.label.description'),
value: 'description',
align: 'center',
sortable: false,
class: 'page-template-description-header',
width: '70%'
width: 'auto'
},
{
text: this.$t('pageTemplates.label.category'),
Expand Down

0 comments on commit ed6f626

Please sign in to comment.