Skip to content

Commit 8ef115a

Browse files
authored
Merge pull request #159 from AbhinavRobinson/master
fix: off by one error #158
2 parents 9c4716b + 3861dcb commit 8ef115a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Calendar/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ const Calendar: React.FC<Props> = ({
242242
);
243243

244244
return (
245-
<div className="w-full md:w-[297px] md:min-w-[297px]">
245+
<div className="w-full md:w-[296px] md:min-w-[296px]">
246246
<div className="flex items-center space-x-1.5 border border-gray-300 dark:border-gray-700 rounded-md px-2 py-1.5">
247247
{!showMonths && !showYears && (
248248
<div className="flex-none">

0 commit comments

Comments
 (0)