Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ const CTA = ({ profileOptions }: { profileOptions: ProfileOption[] }) => {
<TextField
className="max-w-64"
addOnLeading={<SearchIcon className="h-4 w-4 text-subtle" />}
containerClassName="max-w-64 focus:ring-offset-0!"
containerClassName="max-w-64 focus:ring-offset-0! *:mb-0"
type="search"
value={searchTerm}
autoComplete="false"
Expand Down
4 changes: 2 additions & 2 deletions apps/web/modules/settings/my-account/general-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -287,8 +287,8 @@ const GeneralView = ({ user, travelSchedules }: GeneralViewProps) => {
</>
)}
/>
<div className="text-gray text-subtle mt-2 flex items-center text-xs">
<Icon name="info" className="mr-2" />
<div className="text-gray text-subtle mt-2 flex items-start text-xs">
<Icon name="info" className="mr-2 mt-0.25" />
{t("timeformat_profile_hint")}
</div>
<Controller
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/components/form/inputs/TextField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export const InputField = forwardRef<HTMLInputElement, InputFieldProps>(function
{type === "search" && inputValue?.toString().length > 0 && (
<Icon
name="x"
className="text-subtle absolute top-2.5 h-4 w-4 cursor-pointer ltr:right-2 rtl:left-2"
className="text-subtle absolute top-1.75 h-4 w-4 cursor-pointer ltr:right-2 rtl:left-2"
Comment thread
akash3444 marked this conversation as resolved.
onClick={(e) => {
setInputValue("");
props.onChange?.(e as unknown as React.ChangeEvent<HTMLInputElement>);
Expand Down
Loading