Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #114 from selemondev/fix-theme-input
Browse files Browse the repository at this point in the history
fix(app): input theme
  • Loading branch information
selemondev authored Sep 2, 2023
2 parents 1be1e3a + 397b13f commit f8c10a2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@
"pnpm lint:fix"
]
}
}
}
5 changes: 2 additions & 3 deletions packages/nuxt-ui-vue/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<script setup lang="ts">
</script>

<template>
<div class="grid place-items-center min-h-screen w-full">
<UButton color="black" intent="solid" label="Button" />
</div>
<div />
</template>
6 changes: 6 additions & 0 deletions packages/nuxt-ui-vue/src/components/forms/Input/UInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -242,3 +242,9 @@ export default defineComponent({
</span>
</div>
</template>

<style>
.form-input {
appearance: none;
}
</style>
2 changes: 1 addition & 1 deletion packages/nuxt-ui-vue/src/theme/nuxtLabsTheme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ export default {
},
trailing: {
wrapper: 'absolute inset-y-0 end-0 flex items-center',
pointer: 'pointer-events-none',
pointer: 'cursor-pointer',
padding: {
'2xs': 'pe-2',
'xs': 'pe-2.5',
Expand Down

0 comments on commit f8c10a2

Please sign in to comment.