Skip to content

Commit

Permalink
fixed tbody bug
Browse files Browse the repository at this point in the history
  • Loading branch information
eguvenc committed Oct 26, 2024
1 parent 96d6c61 commit 5f8ab88
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions src/components/layout/Messages.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,29 @@
>
<v-layout class="align-center">
<table style="min-width:350px;border:none;">
<tr>
<td width="15%" style="border:none;padding-left:5px;">
<v-icon class="pr-3" size="x-large">{{ snackbar.icon }}</v-icon>
</td>
<td style="border:none;">
<div v-if="snackbar.title" class="mb-1">
<strong>{{ $t(snackbar.title) }}</strong>
</div>
<div v-html="snackbar.text"></div>
</td>
<td width="10%" style="border:none;" align="right">
<v-btn
variant="text"
style="padding:0;"
min-width="35"
@click="snackbar.visible = false"
>
<v-icon size="x-large">mdi-close</v-icon>
</v-btn>
</td>
</tr>
<tbody>
<tr>
<td width="15%" style="border:none;padding-left:5px;">
<v-icon class="pr-3" size="x-large">{{ snackbar.icon }}</v-icon>
</td>
<td style="border:none;">
<div v-if="snackbar.title" class="mb-1">
<strong>{{ $t(snackbar.title) }}</strong>
</div>
<div v-html="snackbar.text"></div>
</td>
<td width="10%" style="border:none;" align="right">
<v-btn
variant="text"
style="padding:0;"
min-width="35"
@click="snackbar.visible = false"
>
<v-icon size="x-large">mdi-close</v-icon>
</v-btn>
</td>
</tr>
</tbody>
</table>
</v-layout>
</v-snackbar>
Expand Down

0 comments on commit 5f8ab88

Please sign in to comment.