Remove duration
Some checks failed
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is failing

This commit is contained in:
Kasper Juul Hermansen 2021-11-15 18:52:08 +01:00
parent b316ce9ca6
commit 3fa4714ba0
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23

View File

@ -23,7 +23,9 @@ export const TodoItem: FC<TodoItemProps> = (props) => {
<div className="flex items-center space-x-4"> <div className="flex items-center space-x-4">
<TodoCheckmark {...props} /> <TodoCheckmark {...props} />
<div className="flex flex-col md:flex-row flex-grow gap-0.5 md:gap-2 pr-6"> <div className="flex flex-col md:flex-row flex-grow gap-0.5 md:gap-2 pr-6">
<div className="flex-grow w-full break-all">{props.todo.title}</div> <div className="flex-grow w-full break-all text-sm">
{props.todo.title}
</div>
<div> <div>
{props.displayProject && props.todo.project && ( {props.displayProject && props.todo.project && (
<div className="text-gray-500 text-xs text-right whitespace-nowrap place-self-end"> <div className="text-gray-500 text-xs text-right whitespace-nowrap place-self-end">
@ -41,6 +43,8 @@ export const TodoItem: FC<TodoItemProps> = (props) => {
}} }}
interactive={true} interactive={true}
interactiveBorder={20} interactiveBorder={20}
delay={0}
duration={0}
content={ content={
<div <div
className="p-4 bg-gray-700 border border-accent-500 rounded-xl flex flex-col gap-4" className="p-4 bg-gray-700 border border-accent-500 rounded-xl flex flex-col gap-4"