Skip to content

Commit

Permalink
Fix: dark mode issues (calcom#8348)
Browse files Browse the repository at this point in the history
* fix: dark mode

* fix: dark mode
  • Loading branch information
G3root authored Apr 18, 2023
1 parent ae22246 commit c0bda62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/web/components/apps/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ const Component = ({
</span>
)}

<div className="prose-sm prose prose-headings:text-emphasis prose-code:text-default prose-strong:text-default text-default mt-8">
<div className="prose-sm prose prose-a:text-default prose-headings:text-emphasis prose-code:text-default prose-strong:text-default text-default mt-8">
{body}
</div>
<h4 className="text-emphasis mt-8 font-semibold ">{t("pricing")}</h4>
Expand Down
6 changes: 2 additions & 4 deletions packages/features/eventtypes/components/EmptyPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,8 @@ function EmptyPage({ name }: { name: string }) {
<SkeletonEventType />
</div>
<div className="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 transform">
<h3 className="dark:text-inverted text-default text-lg font-semibold">{t("no_event_types")} </h3>
<h4 className="dark:text-inverted text-default text-sm leading-normal">
{t("no_event_types_description", { name })}
</h4>
<h3 className="text-emphasis text-lg font-semibold">{t("no_event_types")} </h3>
<h4 className="text-default text-sm leading-normal">{t("no_event_types_description", { name })}</h4>
</div>
</div>
);
Expand Down

0 comments on commit c0bda62

Please sign in to comment.