Skip to content

Fix/minor bugs #1133

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Sep 4, 2024
Merged
Prev Previous commit
Next Next commit
pull from dev
  • Loading branch information
MenamAfzal committed Aug 30, 2024
commit e1940dfc12fab4a342827f0675c7c8cbbf3b0680
Original file line number Diff line number Diff line change
Expand Up @@ -731,14 +731,10 @@ export const Event = styled.div<{
}
&.past {
background-color: ${(props) =>
isDarkColor(props.$style.background) && props.$style.background};
`rgba(${props.$style.bg}, 0.3)`};
&::before {
background-color: ${(props) =>
toHex(props.$style.text) === "#3C3C3C"
? "#8B8FA3"
: isDarkColor(props.$style.text)
? lightenColor(props.$style.text, 0.3)
: props.$style.text};
background-color: ${(props) => props.$style.bg};
opacity: 0.3;
}
&::before,
.event-title,
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.