Skip to content

Commit

Permalink
chore: remove left icon from date fields
Browse files Browse the repository at this point in the history
  • Loading branch information
shariquerik committed Nov 29, 2024
1 parent 4c6038a commit 3261840
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/Activities/AudioPlayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<input
class="w-full slider !h-[0.5] bg-surface-gray-3 [&::-webkit-slider-thumb]:shadow [&::-webkit-slider-thumb:hover]:outline [&::-webkit-slider-thumb:hover]:outline-[0.5px]"
:style="{
background: `linear-gradient(to right, #171717 ${progress}%, #ededed ${progress}%)`,
background: `linear-gradient(to right, var(--surface-gray-7, #171717) ${progress}%, var(--surface-gray-3, #ededed) ${progress}%)`,
}"
type="range"
id="track"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Activities/CallArea.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</div>
</div>
<div
class="flex flex-col gap-2 border border-outline-gray-modals rounded-md bg-surface-white px-3 py-2.5 text-ink-gray-9"
class="flex flex-col gap-2 border border-outline-gray-modals rounded-md bg-surface-cards px-3 py-2.5 text-ink-gray-9"
>
<div class="flex items-center justify-between">
<div class="inline-flex gap-2 items-center text-base font-medium">
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Activities/EmailArea.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div
class="cursor-pointer flex flex-col rounded-md shadow bg-surface-white px-3 py-1.5 text-base transition-all duration-300 ease-in-out"
class="cursor-pointer flex flex-col rounded-md shadow bg-surface-cards px-3 py-1.5 text-base transition-all duration-300 ease-in-out"
>
<div class="-mb-0.5 flex items-center justify-between gap-2 truncate text-ink-gray-9">
<div class="flex items-center gap-2 truncate">
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/components/Fields.vue
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,13 @@
<DateTimePicker
v-else-if="field.type === 'Datetime'"
v-model="data[field.name]"
icon-left=""
:placeholder="getPlaceholder(field)"
input-class="border-none"
/>
<DatePicker
v-else-if="field.type === 'Date'"
icon-left=""
v-model="data[field.name]"
:placeholder="getPlaceholder(field)"
input-class="border-none"
Expand Down

0 comments on commit 3261840

Please sign in to comment.