Skip to content

Commit

Permalink
fixed spacing in the feedback form
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Feb 28, 2024
1 parent 23f4a23 commit 059b422
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webclient/src/components/Checkbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ const model = defineModel<boolean>();

<template>
<div class="mb-4 flex gap-2">
<div class="flex h-5 items-center">
<div class="flex h-5 min-w-4 items-center">
<input
:id="id"
v-model="model"
type="checkbox"
class="focusable text-tumBlue-600 bg-zinc-100 border-zinc-300 z-40 min-h-4 min-w-4 rounded"
/>
</div>
<div class="ms-2">
<div class="ps-1">
<label :for="id" class="text-zinc-900 z-30 text-sm font-medium">
<slot />
</label>
Expand Down

0 comments on commit 059b422

Please sign in to comment.