feat(frontend): Dark Mode

This commit is contained in:
Julian Tölle 2022-07-24 17:45:29 +02:00
parent 65b0d24903
commit 78c7afc152
16 changed files with 83 additions and 62 deletions

View file

@ -35,9 +35,11 @@ export const ReportTopArtists: React.FC = () => {
<div className="md:flex md:justify-center p-4">
<div className="md:shrink-0 min-w-full xl:min-w-0 xl:w-2/3 max-w-screen-lg">
<div className="flex justify-between">
<p className="text-2xl font-normal text-gray-700">Top Artists</p>
<p className="text-2xl font-normal text-gray-700 dark:text-gray-400">
Top Artists
</p>
</div>
<div className="shadow-xl bg-gray-100 rounded p-5 m-2">
<div className="shadow-xl bg-gray-100 dark:bg-gray-800 rounded p-5 m-2">
<ReportTimeOptions
timeOptions={timeOptions}
setTimeOptions={setTimeOptions}