Skip to content

Commit

Permalink
🎨 add dark mode styling for heading + subheading https://gitlab.com/t…
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkjrs committed Jan 19, 2024
1 parent 2f87c66 commit 8ed17f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/NoData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,10 @@ export function NoData({
}) {
return (
<>
<h3 className="leading-5 text-base font-bold text-slate-900">
<h3 className="leading-5 text-base font-bold text-slate-900 dark:text-slate-100">
Create a campaign
</h3>
<p className="pb-6">{`Press a campaign type to start the easiest ad campaign you've ever run.`}</p>
<p className="pb-6 dark:text-slate-300">{`Press a campaign type to start the easiest ad campaign you've ever run.`}</p>
<div className="border-t border-gray-200 pb-6 pt-6">
<ul

Check warning on line 134 in src/components/NoData.tsx

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and ubuntu-latest

The element ul has an implicit role of list. Defining this explicitly is redundant and should be avoided

Check warning on line 134 in src/components/NoData.tsx

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 20.x and ubuntu-latest

The element ul has an implicit role of list. Defining this explicitly is redundant and should be avoided
role="list"
Expand Down

0 comments on commit 8ed17f2

Please sign in to comment.