fix(client): 🐛 do not allow private resumes to be viewable or downloadable through the link

This commit is contained in:
Amruth Pillai
2023-07-12 15:59:22 +02:00
parent 5ef4bfcb6b
commit 1c2d796c50
121 changed files with 3193 additions and 2068 deletions

View File

@ -8,8 +8,8 @@
input,
textarea {
@apply rounded px-4 py-2 transition;
@apply bg-neutral-100 text-neutral-800 dark:bg-neutral-800 dark:text-neutral-50;
@apply border border-transparent border-opacity-50 focus:border-neutral-400 dark:focus:border-neutral-600;
@apply bg-zinc-100 text-zinc-900 dark:bg-zinc-900 dark:text-zinc-50;
@apply border border-transparent border-opacity-50 focus:border-zinc-400 dark:focus:border-zinc-600;
}
.error {
@ -19,7 +19,7 @@
&.file {
> input {
@apply p-0;
@apply file:mr-4 file:border-0 file:bg-neutral-700 file:py-2 file:px-5 file:font-semibold file:text-neutral-50 file:hover:bg-neutral-600;
@apply file:mr-4 file:border-0 file:bg-zinc-800 file:py-2 file:px-5 file:font-semibold file:text-zinc-50 file:hover:bg-zinc-600;
}
}
}