Skip to content

Commit

Permalink
Fix: bug of header name input being clipped
Browse files Browse the repository at this point in the history
  • Loading branch information
Akalanka47000 committed Jul 11, 2024
1 parent acc1a48 commit 54102e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/operations/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const Operations: React.FC<ISTKProps> = ({
<input
id={ids.location}
className={twMerge(
"bg-transparent font-bold outline-none text-xl sm:text-[22px] lg:text-[24px]",
"w-full bg-transparent font-bold outline-none text-xl sm:text-[22px] lg:text-[24px] text-ellipsis",
location === inputPlaceholder && "opacity-60",
styles?.input?.className
)}
Expand All @@ -49,7 +49,7 @@ const Operations: React.FC<ISTKProps> = ({
style={styles?.input?.properties}
onChange={onLocationChange}
/>
<div className="flex justify-between items-center gap-5">
<div className="flex justify-between items-center gap-5 shrink-0">
{showGridSwitch && <GridSwitch className="mr-2" />}
<ExportAction text={exportButtonText} onExport={events?.onExport} styles={props.styles} />
<OperationTriggerIcon
Expand Down

0 comments on commit 54102e3

Please sign in to comment.