Skip to content

Commit

Permalink
fix typos (#4542)
Browse files Browse the repository at this point in the history
`apperance-none` -> `appearance-none`

Note that this might have unintended consequences since these elements never actually had the `appearance-none` property.
  • Loading branch information
deepfriedmind authored Oct 5, 2023
1 parent 32d473e commit fe3387c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/lib/passthrough/tailwind/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3398,7 +3398,7 @@ export default {
}),
input: {
class: [
'font-sans text-base text-gray-600 p-3 m-0 rounded-md apperance-none',
'font-sans text-base text-gray-600 p-3 m-0 rounded-md appearance-none',
'block whitespace-nowrap overflow-hidden flex-auto w-[1%] cursor-pointer text-ellipsis border-0 pr-0',
'focus:outline-none focus:outline-offset-0',
'dark:text-white' //Dark Mode
Expand Down Expand Up @@ -3439,7 +3439,7 @@ export default {
},
input: {
class: [
'font-sans text-base text-gray-600 p-3 m-0 rounded-md apperance-none',
'font-sans text-base text-gray-600 p-3 m-0 rounded-md appearance-none',
'block whitespace-nowrap overflow-hidden flex-auto w-[1%] cursor-pointer text-ellipsis border border-gray-300 pr-0',
'focus:outline-none focus:outline-offset-0 focus:shadow-[0_0_0_0.2rem_rgba(191,219,254,1)] focus:border-blue-300',
'dark:text-white dark:bg-gray-950 dark:border-blue-900/40', //Dark Mode
Expand All @@ -3464,7 +3464,7 @@ export default {
}),
input: {
class: [
'font-sans text-base text-gray-600 p-3 m-0 rounded-md apperance-none',
'font-sans text-base text-gray-600 p-3 m-0 rounded-md appearance-none',
'block whitespace-nowrap overflow-hidden flex-auto w-[1%] cursor-pointer text-ellipsis border-0 pr-0',
'focus:outline-none focus:outline-offset-0',
'dark:text-white' //Dark Mode
Expand Down

0 comments on commit fe3387c

Please sign in to comment.