Smol changes
This commit is contained in:
parent
99078f4321
commit
6bd59b8607
BIN
src/assets/JetBrainsMonoNLNerdFont-Regular.ttf
Normal file
BIN
src/assets/JetBrainsMonoNLNerdFont-Regular.ttf
Normal file
Binary file not shown.
@ -1,5 +1,5 @@
|
||||
<footer
|
||||
class="pt-12 text-center text-xs text-lightModeForegroundMuted hover:text-lightModeForeground dark:text-darkModeForegroundMuted dark:hover:text-darkModeForeground"
|
||||
>
|
||||
<hr class="opacity-50" />
|
||||
<!--<hr class="opacity-50" />-->
|
||||
</footer>
|
||||
|
@ -16,7 +16,7 @@ import profilePicture from "@/assets/profile-picture.png";
|
||||
draggable="false"
|
||||
class="mx-auto size-32 rounded-full"
|
||||
/>
|
||||
<h1 class="mt-4 text-center text-3xl font-semibold">{SITE.name}</h1>
|
||||
<h1 class="mt-4 text-center text-3xl font-JetBrainsMonoNLNerdFont-Regular">{SITE.name}</h1>
|
||||
<p
|
||||
class="mt-1 text-balance text-center text-sm text-lightModeForegroundMuted dark:text-darkModeForegroundMuted"
|
||||
>
|
||||
|
@ -9,7 +9,7 @@ import Footer from "@/components/Footer.astro";
|
||||
<BaseHead>
|
||||
<slot name="head" />
|
||||
</BaseHead>
|
||||
<body class="mx-auto min-h-screen max-w-screen-sm p-3 font-sans sm:p-6">
|
||||
<body class="mx-auto min-h-screen max-w-xs p-3 font-mono sm:p-6">
|
||||
<main>
|
||||
<slot />
|
||||
</main>
|
||||
|
@ -19,6 +19,11 @@
|
||||
"id": "1728534577186",
|
||||
"icon": "steam",
|
||||
"url": "https://steamcommunity.com/id/furrythatroars"
|
||||
},
|
||||
{
|
||||
"id": "1728534577187",
|
||||
"icon": "twitch",
|
||||
"url": "https://live.opnkty.uk"
|
||||
}
|
||||
],
|
||||
"customLinks": [
|
||||
|
@ -1,10 +1,14 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
@font-face {
|
||||
font-family: 'jb';
|
||||
src: url("/src/assets/JetBrainsMonoNLNerdFont-Regular.ttf") format("ttf");
|
||||
}
|
||||
@layer base {
|
||||
:root {
|
||||
color-scheme: light dark;
|
||||
font-family: 'jb';
|
||||
|
||||
/* replace colors from here... */
|
||||
--light-mode-background: 240 240 240;
|
||||
@ -40,11 +44,12 @@
|
||||
--dark-mode-custom-link-text-hover: 255 255 255;
|
||||
/* ...to here */
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: light-dark(
|
||||
rgb(var(--light-mode-background)),
|
||||
rgb(var(--dark-mode-background))
|
||||
);
|
||||
font-family: 'jb';
|
||||
}
|
||||
|
||||
}
|
@ -7,6 +7,9 @@ export default {
|
||||
plugins: [require("@tailwindcss/typography")],
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
customFont: ['"JetBrainsMonoNLNerdFont-Regular.ttf"', ""],
|
||||
},
|
||||
colors: {
|
||||
lightModeBackground:
|
||||
"rgb(var(--light-mode-background) / <alpha-value>)",
|
||||
|
Loading…
Reference in New Issue
Block a user