refactor: adjust SliderComponent spacing and typography (#5836)

🐛 (sliderComponent/index.tsx): adjust styling to fix alignment issue with input element in SliderComponent

Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org>
This commit is contained in:
Cristhian Zanforlin Lousa 2025-01-22 11:37:25 -03:00 committed by GitHub
commit c01452f890
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -199,13 +199,14 @@ export default function SliderComponent({
const ringClassInputClass = "ring-[1px] ring-slider-input-border";
return (
<div className={cn("w-full rounded-lg", editNode && "mt-4")}>
<div className={cn("w-full rounded-lg", editNode && "mt-3")}>
<Case condition={!sliderButtons}>
<div className="noflow nowheel nopan nodelete nodrag flex items-center justify-end">
<div
className={clsx(
"input-slider-text",
(isGrabbing || isEditing) && ringClassInputClass,
editNode && "relative left-0.5",
)}
>
{isEditing ? (
@ -215,7 +216,7 @@ export default function SliderComponent({
onChange={handleInputChange}
onBlur={handleInputBlur}
onKeyDown={handleKeyDown}
className="relative bottom-[1px] w-full cursor-text rounded-sm bg-transparent text-center font-mono text-[0.88rem] arrow-hide"
className="relative bottom-[1px] w-full cursor-text rounded-sm bg-transparent text-center font-mono text-sm arrow-hide"
autoFocus
data-testid="slider_input"
/>