Skip to content

Commit

Permalink
Update the calendar`s colors
Browse files Browse the repository at this point in the history
  • Loading branch information
moiskillnadne committed Oct 26, 2024
1 parent db08ad9 commit 7f84005
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/widget/Challenge/ui/CalendarDayItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type Props = {
export const CalendarDayItem = ({ label, isChecked, onClick }: Props) => {
return (
<div
className={`relative flex items-center justify-center w-[50px] h-[50px] md:w-[60px] md:h-[60px] rounded-full text-white text-center font-bold text-[16px]`}
className={`relative flex items-center justify-center w-[50px] h-[50px] md:w-[60px] md:h-[60px] rounded-fulltext-center font-bold text-[16px]`}
onClick={onClick}
>
<span className={`${isChecked ? '' : 'opacity-30'} transition-all duration-1000`}>
Expand Down
2 changes: 1 addition & 1 deletion src/widget/Challenge/ui/CalendarHeaderItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type Props = {

export const CalendarHeaderItem = ({ label }: Props) => {
return (
<div className="relative flex items-center justify-center w-[50px] md:w-[60px] h-[50px] md:h-[60px] rounded-full text-white text-center font-bold text-[12px] md:text-[14px]">
<div className="relative flex items-center justify-center w-[50px] md:w-[60px] h-[50px] md:h-[60px] rounded-full text-center font-bold text-[12px] md:text-[14px]">
{label}
<div className="absolute inset-0 rounded-full border-[4px] border-red"></div>
<div className="absolute inset-[4px] rounded-full border-[5px] border-green"></div>
Expand Down

0 comments on commit 7f84005

Please sign in to comment.