Enhance candidates management: add city field, drag-and-drop ranking persistence, AI analysis popover, and CV preview

This commit is contained in:
mrKamoo
2026-04-22 15:26:15 +02:00
parent 174f229b5d
commit 6f00da6d10
13 changed files with 480 additions and 116 deletions

View File

@@ -36,6 +36,8 @@ const alignmentClasses = computed(() => {
return 'ltr:origin-top-left rtl:origin-top-right start-0';
} else if (props.align === 'right') {
return 'ltr:origin-top-right rtl:origin-top-left end-0';
} else if (props.align === 'top-right') {
return 'origin-bottom-right bottom-full mb-2 end-0 !mt-0';
} else {
return 'origin-top';
}