Skip to content

Commit

Permalink
fix: add border to Input
Browse files Browse the repository at this point in the history
  • Loading branch information
shinokada committed Jul 9, 2024
1 parent a555c1f commit 8c2e834
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/forms/Input.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
export let floatClass: string = 'flex absolute inset-y-0 items-center text-gray-500 dark:text-gray-400';
const borderClasses = {
base: 'border-gray-300 dark:border-gray-600',
tinted: 'border-gray-300 dark:border-gray-500',
green: 'border-green-500 dark:border-green-400',
red: 'border-red-500 dark:border-red-400'
base: 'border border-gray-300 dark:border-gray-600',
tinted: 'border border-gray-300 dark:border-gray-500',
green: 'border border-green-500 dark:border-green-400',
red: 'border border-red-500 dark:border-red-400'
};
const ringClasses = {
Expand Down

0 comments on commit 8c2e834

Please sign in to comment.