refactor(ui): getting ride of naive ui buttons

This commit is contained in:
Corentin Thomasset 2023-04-19 21:38:59 +02:00 committed by Corentin THOMASSET
parent df989e24b3
commit c45bce36f9
44 changed files with 738 additions and 204 deletions

View file

@ -18,16 +18,16 @@
>
<n-input-group>
<n-input v-model:value="entropy" placeholder="Your string..." />
<n-button @click="refreshEntropy">
<c-button @click="refreshEntropy">
<n-icon size="22">
<Refresh />
</n-icon>
</n-button>
<n-button @click="copyEntropy">
</c-button>
<c-button @click="copyEntropy">
<n-icon size="22">
<Copy />
</n-icon>
</n-button>
</c-button>
</n-input-group>
</n-form-item>
</n-gi>
@ -48,9 +48,9 @@
spellcheck="false"
/>
<n-button @click="copyPassphrase">
<c-button @click="copyPassphrase">
<n-icon size="22" :component="Copy" />
</n-button>
</c-button>
</n-input-group>
</n-form-item>
</n-card>