Skip to content

Commit

Permalink
chore(input-radio): use less stroke if not selected
Browse files Browse the repository at this point in the history
  • Loading branch information
stfsy committed Sep 1, 2023
1 parent c23998b commit e506034
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/form-input-radio.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
<path stroke-linecap="round" stroke-linejoin="round"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
<svg v-else-if="disabled" xmlns="http://www.w3.org/2000/svg" class="stroke-2 stroke-current h-6 w-6"
<svg v-else-if="disabled" xmlns="http://www.w3.org/2000/svg" class="stroke-1 stroke-current h-6 w-6"
fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M8 01M21 12a9 9 0 0 9 9 0 0118 0z" />
</svg>
<svg v-else xmlns="http://www.w3.org/2000/svg" class="stroke-2 stroke-current h-6 w-6" fill="none"
<svg v-else xmlns="http://www.w3.org/2000/svg" class="stroke-1 stroke-current h-6 w-6" fill="none"
viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M8 01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
Expand Down

0 comments on commit e506034

Please sign in to comment.