Skip to content

Commit

Permalink
chore: remove custom styles
Browse files Browse the repository at this point in the history
  • Loading branch information
juliopavila committed Feb 26, 2024
1 parent 0973429 commit a9dd746
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
8 changes: 2 additions & 6 deletions src/components/Ui/UiInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const props = defineProps<{
additionalInputClass?: string;
focusOnMount?: boolean;
readonly?: boolean;
customStyles?: string;
}>();
const emit = defineEmits(['update:modelValue', 'blur']);
Expand All @@ -34,11 +33,8 @@ onMounted(() => {
<template>
<div class="w-full rounded-3xl">
<div
:class="[
{ '!border-red': !!error },
customStyles,
'relative z-10 flex w-full rounded-3xl border border-skin-border bg-skin-bg px-3 text-left leading-[42px] outline-none transition-colors focus-within:border-skin-text'
]"
class="relative z-10 flex w-full rounded-3xl border border-skin-border bg-skin-bg px-3 text-left leading-[42px] outline-none transition-colors focus-within:border-skin-text"
:class="{ '!border-red': !!error }"
>
<div class="mr-2 whitespace-nowrap text-skin-text">
<slot name="label" />
Expand Down
1 change: 0 additions & 1 deletion src/components/Ui/UiSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
defineProps<{
modelValue?: string | number;
disabled?: boolean;
customStyles?: string;
}>();
const emit = defineEmits(['update:modelValue', 'change']);
Expand Down

0 comments on commit a9dd746

Please sign in to comment.