Skip to content

Commit

Permalink
fix: change class-name attribute in vue blocks (#2989)
Browse files Browse the repository at this point in the history
  • Loading branch information
Szymon-dziewonski authored Sep 28, 2023
1 parent fae7ba0 commit 6b0a2f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="flex items-center">
<SfCheckbox id="checkbox" v-model="modelValue" value="value" class-name="peer" />
<SfCheckbox id="checkbox" v-model="modelValue" value="value" class="peer" />
<label class="ml-3 text-base text-gray-900 cursor-pointer font-body peer-disabled:text-disabled-900" for="checkbox">
Label
</label>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<label>
<span className="typography-text-sm font-medium">Description</span>
<span class="typography-text-sm font-medium">Description</span>
<SfTextarea ref="textareaRef" class="w-full h-max-[500px]" />
</label>
<div className="flex justify-between mt-0.5">
<div class="flex justify-between mt-0.5">
<div>
<p className="typography-text-xs text-neutral-500">Do not include personal or financial information.</p>
<p class="typography-text-xs text-neutral-500">Do not include personal or financial information.</p>
</div>
</div>
</template>
Expand Down

0 comments on commit 6b0a2f6

Please sign in to comment.