Added Noto Sans Symbols as backup font for unrenderable characters

Resolves https://github.com/mcgill-ecsess/ECSESS/issues/85
Replace the copyleft symbol with the copyright symbol instead
This commit is contained in:
2026-02-24 15:47:51 -05:00
parent 3f77dfffc2
commit 5a7afcb77c
2 changed files with 5 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Symbols:wght@100..900&display=swap');
@import 'tailwindcss'; @import 'tailwindcss';
/* @import '@skeletonlabs/skeleton-svelte'; */ /* @import '@skeletonlabs/skeleton-svelte'; */
@@ -60,9 +61,10 @@
} }
* { * {
font-family: 'Saira', sans-serif; font-family: 'Saira', 'Noto Sans Symbols', sans-serif;
font-optical-sizing: auto; font-optical-sizing: auto;
font-weight: 500; font-weight: 500;
font-style: normal;
scroll-behavior: smooth; scroll-behavior: smooth;
} }

View File

@@ -37,7 +37,7 @@
}, },
{ {
name: 'GitHub', name: 'GitHub',
url: 'https://github.com/mcgill-ecsess/ECSESS', url: 'https://github.com/mcgill-ecsess/',
icon: 'github', icon: 'github',
ariaLabel: 'Visit our open source website' ariaLabel: 'Visit our open source website'
} }
@@ -144,7 +144,7 @@
<!-- Copyright --> <!-- Copyright -->
<div> <div>
<p class="text-ecsess-200 text-center text-sm"> <p class="text-ecsess-200 text-center text-sm">
🄯 ECSESS {year} under GNU General Public License v3.0. <br /> &copy; ECSESS {year} under GNU General Public License v3.0. <br />
Designed with love {'<3'}. Designed with love {'<3'}.
</p> </p>
</div> </div>