Adjusting the color.

This commit is contained in:
THIS ONE IS A LITTLE BIT TRICKY KRUB 2023-11-11 11:26:51 +07:00
parent 0ee5e64394
commit 23bd8f73bf
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ const NavItem = ({ icon, selected, id, setSelected, logo, path }) => {
<AnimatePresence> <AnimatePresence>
{selected && ( {selected && (
<motion.span <motion.span
className="absolute inset-0 rounded-md bg-indigo-600 z-0" className="absolute inset-0 rounded-md bg-emerald-600 z-0"
initial={{ scale: 0 }} initial={{ scale: 0 }}
animate={{ scale: 1 }} animate={{ scale: 1 }}
exit={{ scale: 0 }} exit={{ scale: 0 }}

View File

@ -58,7 +58,7 @@ function TaskCard({ task, deleteTask, updateTask }) {
<textarea <textarea
className=" className="
h-[90%] h-[90%]
w-full resize-none border-none rounded bg-transparent text-white focus:outline-none w-full resize-none border-none rounded bg-transparent text-black focus:outline-none
" "
value={task.content} value={task.content}
autoFocus autoFocus