Skip to content

Commit a88d60c

Browse files
committed
Prevents buttons spanning 100% width by default
1 parent edf5b14 commit a88d60c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/webapp/app/components/primitives/Buttons.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ export const LinkButton = ({
389389
to={to}
390390
ref={innerRef}
391391
replace={replace}
392-
className={cn("group/button block focus-custom", props.fullWidth ? "w-full" : "")}
392+
className={cn("group/button block focus-custom", props.fullWidth ? "w-full" : "w-fit")}
393393
onClick={onClick}
394394
onMouseDown={onMouseDown}
395395
onMouseEnter={onMouseEnter}

0 commit comments

Comments
 (0)