Skip to content

Commit

Permalink
fix(base-input): add bg transparent to AInput child for dark mode (#68)
Browse files Browse the repository at this point in the history
Fix #48
  • Loading branch information
peterbud committed Nov 11, 2022
1 parent 8b700ee commit 6ee0f7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/anu-vue/src/components/base-input/ABaseInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const ABaseInput = defineComponent({
{slots.default?.({
...attrs,
class: [
'a-base-input-child w-full h-full absolute inset-0 rounded-inherit',
'a-base-input-child w-full h-full absolute inset-0 rounded-inherit bg-transparent',
slots['prepend-inner'] || props.prependInnerIcon ? 'a-base-input-w-prepend-inner' : 'a-base-input-wo-prepend-inner',
slots['append-inner'] || props.appendInnerIcon ? 'a-base-input-w-append-inner' : 'a-base-input-wo-append-inner',
],
Expand Down

0 comments on commit 6ee0f7c

Please sign in to comment.