Skip to content

Commit

Permalink
Fix width of inputs in travel calendar for size=large (#765)
Browse files Browse the repository at this point in the history
- Fix width of inputs in travel calendar for size=large. It was too wide.
  • Loading branch information
mattias800 authored Aug 16, 2024
1 parent 6034196 commit 347498e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const getWidth = (calenderSize: TravelCalendarSizeVariant) => {
case "medium":
return "168px";
case "large":
return "224px";
return "196px";
default:
return exhaustSwitchCase(calenderSize, "168px");
}
Expand Down

0 comments on commit 347498e

Please sign in to comment.