+
What is Chromium?
diff --git a/src/routes/credits/+page.svelte b/src/routes/credits/+page.svelte
index 748b097..bed10e8 100644
--- a/src/routes/credits/+page.svelte
+++ b/src/routes/credits/+page.svelte
@@ -1,20 +1,20 @@
-
- Back
+
-
-
-
+
+
+
-
-
+
+
-
-
+
+
diff --git a/src/routes/footer.svelte b/src/routes/footer.svelte
index b97199c..3b7b478 100644
--- a/src/routes/footer.svelte
+++ b/src/routes/footer.svelte
@@ -23,6 +23,14 @@
.right {
float: right;
}
+
+ a {
+ text-decoration: underline;
+ color: blue;
+ }
+ a:visited {
+ color: purple;
+ }
}
}
diff --git a/src/routes/redirect/+page.svelte b/src/routes/redirect/+page.svelte
index 4be4ad4..77b0bb9 100644
--- a/src/routes/redirect/+page.svelte
+++ b/src/routes/redirect/+page.svelte
@@ -1,9 +1,9 @@
-
-
-
-
-
+
+
{#if browserName }
{#if chromium}
- {browserName} is not supported by this Website
- Use a different web browser
-
+ { browserName } is not supported by this Website
+ Use a different web browser
+
{:else }
- Congrats, you're not using Chromium
- So why are you here?
-
+ Congrats, you're not using Chromium
+ So why are you here?
+
{/if }
{/if }
diff --git a/tailwind.config.js b/tailwind.config.js
index 7008bec..8e4b4cb 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -1,9 +1,13 @@
+const plugin = require("tailwindcss/plugin");
+
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{htm,js,svelte,ts}"],
theme: {
extend: {},
},
- plugins: [],
+ plugins: [
+ require('@tailwindcss/typography'),
+ ],
}