Skip to content

Commit

Permalink
Vertically align keys to the top in import table
Browse files Browse the repository at this point in the history
  • Loading branch information
jolzee committed Feb 22, 2020
1 parent 13cdc78 commit fdae782
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -400,18 +400,21 @@
v-if="importDialog"
title="Solution Import"
:show="importDialog"
width="600px"
width="800px"
@close="importDialog = false"
>
{{ importDialogMessages.message }}
<br />
<br />
<v-alert
border="top"
colored-border
type="warning"
elevation="2"
text
outlined
border="left"
color="deep-orange"
icon="mdi-fire"
class="ma-0 elevation-3"
>Accepting will overwrite other solutions with the same name or deep link.</v-alert>

<v-simple-table>
<template v-slot:default>
<thead>
Expand All @@ -423,7 +426,7 @@
<tbody>
<template v-for="(value, name, index) in importDialogMessages.solution">
<tr :key="`${index}${name}`">
<td>
<td style="vertical-align: top" class="pt-2">
<code>{{ name }}</code>
</td>
<td>
Expand Down

0 comments on commit fdae782

Please sign in to comment.