Skip to content

Commit 36a3689

Browse files
Disha2628JXP25mittal-ishaan
authored
UI fixing in Calendar Label component (#411)
Co-authored-by: Jai Pannu <142983705+JXP25@users.noreply.github.com> Co-authored-by: Ishaan Mittal <ishaanmittal123@gmail.com>
1 parent 6c312c6 commit 36a3689

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • src/components/Calendar/CalenderComponent

src/components/Calendar/CalenderComponent/Labels.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default function Labels() {
99

1010
return (
1111
<React.Fragment>
12-
<p className="text-gray-500 font-bold ">Label</p>
12+
<p className="text-white font-bold ">Label</p>
1313
{Array.from(labelsClasses.entries()).map(([label, color], idx) => {
1414
const checked =
1515
labels.find((lbl) => lbl.label === label)?.checked || false;
@@ -21,12 +21,12 @@ export default function Labels() {
2121
onChange={() => updateLabel({ label, checked: !checked })}
2222
className={`form-checkbox h-5 w-5 text-${color}-400 rounded focus:ring-0 cursor-pointer`}
2323
/>
24-
<span className="ml-2 text-gray-700 font-medium capitalize">
24+
<span className="ml-2 text-white font-medium capitalize">
2525
{label}
2626
</span>
2727
</label>
2828
);
2929
})}
3030
</React.Fragment>
3131
);
32-
}
32+
}

0 commit comments

Comments
 (0)