diff --git a/src/app.css b/src/app.css index 1e6736c..fb126b1 100644 --- a/src/app.css +++ b/src/app.css @@ -7,7 +7,7 @@ --text-color: #000000; --bg-color: #e9e9e9; --hover-bg-color: #e0e0e0; - --separator-line-color: #d0d0d0; + --separator-line-color: #a0a0a0; --low-emphasis-text-color: #6b6b6b; --primary-color: #1F96F3; --dull-primary-color: #51aaf0; @@ -22,7 +22,7 @@ --text-color: #f4f4f4; --bg-color: #0c0c0c; --hover-bg-color: #2c2e2e; - --separator-line-color: #2e343d; + --separator-line-color: #4e545d; --low-emphasis-text-color: #999999; --primary-color: #1F96F3; --dull-primary-color: #1569ab; diff --git a/src/routes/account/editapplication/+page.server.ts b/src/routes/account/editapplication/+page.server.ts index 8e22478..27dfa1c 100644 --- a/src/routes/account/editapplication/+page.server.ts +++ b/src/routes/account/editapplication/+page.server.ts @@ -1,7 +1,7 @@ import { type Actions, error, fail, redirect } from '@sveltejs/kit'; import type { PageServerLoad } from './$types'; import { editApplication, getEditApplicationPageData } from '$lib/db/index.server'; -import { getUserId, getUserPerms } from '$lib/index.server'; +import { getUserPerms } from '$lib/index.server'; import { PERMISSIONS } from '$lib/consts'; import type { Application } from '$lib/types'; @@ -21,7 +21,7 @@ export const load: PageServerLoad = async ({ url, cookies }) => { export const actions: Actions = { // Application submission - submit: async ({ request, cookies, params, url }) => { + submit: async ({ request, cookies, url }) => { // Permission check (apply perm) if (!((getUserPerms(cookies) & PERMISSIONS.APPLY_FOR_JOBS) > 0)) { return fail(403, { errorMessage: 'Unauthorized' }); diff --git a/src/routes/account/editapplication/+page.svelte b/src/routes/account/editapplication/+page.svelte index 382d9aa..1336217 100644 --- a/src/routes/account/editapplication/+page.svelte +++ b/src/routes/account/editapplication/+page.svelte @@ -125,7 +125,7 @@ {/if} diff --git a/src/routes/postings/+page.svelte b/src/routes/postings/+page.svelte index 2a690a1..3ac1e3b 100644 --- a/src/routes/postings/+page.svelte +++ b/src/routes/postings/+page.svelte @@ -66,10 +66,10 @@