Skip to content

Commit

Permalink
style: improve share dialog ui and accessibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Bnyro committed Jan 9, 2024
1 parent dd8dd9c commit 7cf8c22
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/ShareModal.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<template>
<ModalComponent>
<h2 v-t="'actions.share'" />
<h2 v-t="'actions.share'" class="mb-5" />
<div class="flex justify-between">
<label v-t="'actions.piped_link'" />
<input v-model="pipedLink" type="checkbox" @change="onChange" />
</div>
<hr />
<div v-if="hasPlaylist" class="flex justify-between">
<label v-t="'actions.with_playlist'" />
<input v-model="withPlaylist" type="checkbox" @change="onChange" />
Expand All @@ -17,6 +18,7 @@
<label v-t="'actions.time_code'" />
<input v-model="timeStamp" class="input w-12" type="text" @change="onChange" />
</div>
<hr />
<a :href="generatedLink" target="_blank">
<h3 class="mt-4" v-text="generatedLink" />
</a>
Expand Down

0 comments on commit 7cf8c22

Please sign in to comment.