mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-04-30 18:59:37 +00:00
Added Basic Darkmode and Fixed Small Bugs
This commit is contained in:
parent
aacca3d141
commit
94fb5c7eb1
42 changed files with 593 additions and 72 deletions
|
@ -82,7 +82,7 @@ export const Actions = ({ data }: ActionsProps) => {
|
|||
<DatePicker
|
||||
type='dueDate'
|
||||
variant='gray'
|
||||
className='w-full justify-start text-black'
|
||||
className='w-full justify-start text-black dark:text-white'
|
||||
size='inline'
|
||||
placeholder='Add Due Date'
|
||||
afterSelectText='Due '
|
||||
|
@ -92,7 +92,7 @@ export const Actions = ({ data }: ActionsProps) => {
|
|||
<DatePicker
|
||||
type='startedAtDate'
|
||||
variant='gray'
|
||||
className='w-full justify-start text-black'
|
||||
className='w-full justify-start text-black dark:text-white'
|
||||
size='inline'
|
||||
placeholder='Add Started Date'
|
||||
afterSelectText='Started '
|
||||
|
@ -103,7 +103,7 @@ export const Actions = ({ data }: ActionsProps) => {
|
|||
onClick={onDelete}
|
||||
disabled={isLoadingDelete}
|
||||
variant='gray'
|
||||
className='w-full justify-start text-destructive'
|
||||
className='w-full justify-start text-destructive dark:text-red-500'
|
||||
size='inline'
|
||||
>
|
||||
<Trash className='mr-2 h-4 w-4' />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue