overhauled recruiter tools

This commit is contained in:
2025-12-03 15:20:37 -05:00
parent b8f18c060e
commit b79e78c2a6
3 changed files with 106 additions and 42 deletions

View File

@@ -121,7 +121,7 @@ async function handleDeny(id) {
</script>
<template>
<div v-if="!loading" class="max-w-3xl mx-auto">
<div v-if="!loading" class="w-full">
<div v-if="!newApp" class="flex flex-row justify-between items-center py-2 mb-8">
<!-- Application header -->
<div>
@@ -170,5 +170,5 @@ async function handleDeny(id) {
</div>
</div>
<!-- TODO: Implement some kinda loading screen -->
<div v-else>Loading</div>
<div v-else class="flex items-center justify-center h-full -mt-40">Loading</div>
</template>