Skip to content

Calendar Component - Bugfixes and Premium views #736

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 9 commits into from
Mar 4, 2024
Prev Previous commit
Next Next commit
Merge branch 'dev' of https://github.com/lowcoder-org/lowcoder into c…
…alendar-licenc-key
  • Loading branch information
freddysundowner committed Feb 23, 2024
commit e7014bb9702e54de71e51397fa33f01108d32ed6
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,9 @@ export const Wrapper = styled.div<{
flex-direction: inherit;
}
.fc-day-today .fc-daygrid-day-number {
background-color: ${(props) => props.$theme?.primary};
background-color: ${(props) => props.$theme?.primary ? props.$theme.primary : props.$style.background};
color: ${(props) =>
contrastText(props.$theme?.primary || "", props.$theme?.textDark, props.$theme?.textLight)};
contrastText(props.$theme?.primary || "", props.$theme?.textDark || "#000000", props.$theme?.textLight || "#ffffff")};
}
.fc-daygrid-day-events {
padding: 1px 0 5px 0;
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.