diff --git a/src/routes/pork/+page.svelte b/src/routes/pork/+page.svelte
index 30c61b7..0aff0da 100644
--- a/src/routes/pork/+page.svelte
+++ b/src/routes/pork/+page.svelte
@@ -1,5 +1,4 @@
@@ -106,9 +107,6 @@
flex-basis: 50%;
text-align: center;
text-shadow: 3px 3px 3px var(--primary-7);
- &.small {
- flex-basis: 25%;
- }
&:first-child {
text-align: left;
}
diff --git a/svelte.config.js b/svelte.config.js
index 1d5479b..2a5b95f 100644
--- a/svelte.config.js
+++ b/svelte.config.js
@@ -3,16 +3,19 @@ import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
- // Consult https://svelte.dev/docs/kit/integrations
- // for more information about preprocessors
- preprocess: vitePreprocess(),
+ // Consult https://svelte.dev/docs/kit/integrations
+ // for more information about preprocessors
+ preprocess: vitePreprocess(),
- kit: {
- // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
- // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
- // See https://svelte.dev/docs/kit/adapters for more information about adapters.
- adapter: adapter()
- }
+ kit: {
+ // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
+ // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
+ // See https://svelte.dev/docs/kit/adapters for more information about adapters.
+ adapter: adapter(),
+ csrf: {
+ checkOrigin: true
+ }
+ }
};
export default config;