added task size guide text and ensured longer guidetext doesn't cause dropdowns to get pushed off the quick add card

This commit is contained in:
2026-02-06 10:03:43 -06:00
parent 51d0624eb1
commit 779feade9f
2 changed files with 15 additions and 15 deletions
+11 -11
View File
@@ -37,15 +37,15 @@ export const URGENCY_HOURS: Record<number, number> = {
};
export const SIZE_OPTIONS = [
{ value: "10", label: "10 - Huge" },
{ value: "9", label: "9" },
{ value: "8", label: "8" },
{ value: "7", label: "7" },
{ value: "6", label: "6" },
{ value: "5", label: "5" },
{ value: "4", label: "4" },
{ value: "3", label: "3" },
{ value: "2", label: "2" },
{ value: "1", label: "1" },
{ value: "0", label: "0 - Tiny" }
{ value: "10", label: "10 - Multiple Days" },
{ value: "9", label: "9 - More than a day" },
{ value: "8", label: "8 - One day" },
{ value: "7", label: "7 - Half a day" },
{ value: "6", label: "6 - Two hours" },
{ value: "5", label: "5 - One hour" },
{ value: "4", label: "4 - Forty-Five minutes" },
{ value: "3", label: "3 - Thirty minutes" },
{ value: "2", label: "2 - Fifteen minutes" },
{ value: "1", label: "1 - Five minutes" },
{ value: "0", label: "0 - Less than a minute" }
];