Fix light mode blank slate style

This commit is contained in:
Chris Veleris 2025-07-11 11:40:33 +03:00
parent 0a64f3bd00
commit 3375322bea
3 changed files with 3 additions and 3 deletions

View file

@ -381,7 +381,7 @@ const InboxItems: React.FC = () => {
{inboxItems.length === 0 ? (
<div className="flex justify-center items-center mt-4">
<div className="w-full max-w bg-black/15 dark:bg-gray-900/25 rounded-l px-10 py-24 flex flex-col items-center opacity-95">
<div className="w-full max-w bg-black/2 dark:bg-gray-900/25 rounded-l px-10 py-24 flex flex-col items-center opacity-95">
<InboxIcon className="h-20 w-20 text-gray-400 opacity-30 mb-6" />
<p className="text-2xl font-light text-center text-gray-600 dark:text-gray-300 mb-2">
{t('inbox.empty')}

View file

@ -29,7 +29,7 @@ const TodayPlan: React.FC<TodayPlanProps> = ({
return (
<>
<div className="flex justify-center items-center mt-4">
<div className="w-full max-w bg-black/15 dark:bg-gray-900/25 rounded-l px-10 py-24 flex flex-col items-center opacity-95">
<div className="w-full max-w bg-black/2 dark:bg-gray-900/25 rounded-l px-10 py-24 flex flex-col items-center opacity-95">
<CalendarDaysIcon className="h-20 w-20 text-gray-400 opacity-30 mb-6" />
<p className="text-2xl font-light text-center text-gray-600 dark:text-gray-300 mb-2">
{t(

View file

@ -463,7 +463,7 @@ const Tasks: React.FC = () => {
/>
) : (
<div className="flex justify-center items-center mt-4">
<div className="w-full max-w bg-black/15 dark:bg-gray-900/25 rounded-l px-10 py-24 flex flex-col items-center opacity-95">
<div className="w-full max-w bg-black/2 dark:bg-gray-900/25 rounded-l px-10 py-24 flex flex-col items-center opacity-95">
<svg className="h-20 w-20 text-gray-400 opacity-30 mb-6" fill="none" stroke="currentColor" strokeWidth="1.5" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" d="M11.25 11.25l.041-.02a.75.75 0 011.063.852l-.708 2.836a.75.75 0 001.063.853l.041-.021M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9-3.75h.008v.008H12V8.25z" />
</svg>