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

@ -1,7 +1,3 @@
// Icons & Fonts
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
// KaTeX (for remark-math)
@import url('https://cdn.jsdelivr.net/npm/katex@0.16.0/dist/katex.min.css');
@ -20,8 +16,8 @@
}
body {
@apply font-inter text-sm;
@apply bg-neutral-50 text-neutral-900 dark:bg-neutral-900 dark:text-neutral-100;
@apply font-ibm-plex-sans text-sm;
@apply bg-zinc-50 text-zinc-950 dark:bg-zinc-950 dark:text-zinc-50;
}
p {

View File

@ -53,6 +53,6 @@
.image {
@apply relative h-48 rounded hover:opacity-75;
@apply border-2 dark:border-neutral-700;
@apply border-2 dark:border-zinc-800;
}
}

View File

@ -6,11 +6,11 @@
@apply fixed bottom-6 right-6 z-50;
button {
@apply flex gap-2 px-4 py-3 shadow dark:bg-neutral-600/25;
@apply flex gap-2 px-4 py-3 shadow dark:bg-zinc-600/25;
@apply rounded-full transition-colors;
&:hover {
@apply dark:bg-neutral-500/25;
@apply dark:bg-zinc-500/25;
}
}
}

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;
}
}
}