Use a scope style instead

This commit is contained in:
Girish Ramakrishnan
2025-09-09 09:30:16 +02:00
parent ab4607bf0e
commit 2a089eab08
2 changed files with 22 additions and 2 deletions
+11 -1
View File
@@ -165,7 +165,7 @@ onMounted(async () => {
</div>
<div v-else>
<p>{{ $t('profile.createApiToken.description') }}</p>
<div style="display: flex; width: 100%; gap: 5px">
<div class="copy-container">
<TextInput v-model="addedToken" readonly/>
<Button tool @click="onCopyApiTokenToClipboard(addedToken)" icon="fa fa-clipboard" />
</div>
@@ -205,3 +205,13 @@ onMounted(async () => {
</Section>
</div>
</template>
<style scoped>
.copy-container {
display: flex;
width: 100%;
gap: 5px;
}
</style>