Skip to content

Commit

Permalink
fix: font path change
Browse files Browse the repository at this point in the history
  • Loading branch information
Pipazoul committed Dec 15, 2023
1 parent e326c54 commit 5bdafa0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
font-family: 'SpaceMono';
font-style: normal;
font-weight: 400;
src: local('SpaceMono'), url(./font/SpaceMono-Regular.ttf) format('truetype');
src: local('SpaceMono'), url(/font/SpaceMono-Regular.ttf) format('truetype');
}
@font-face {
font-family: 'SpaceMono';
font-style: normal;
font-weight: 700;
src: local('SpaceMono'), url(./font/SpaceMono-Bold.ttf) format('truetype');
src: local('SpaceMono'), url(/font/SpaceMono-Bold.ttf) format('truetype');
}

body {
Expand Down
1 change: 1 addition & 0 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@
{#if display}
<div class="flex h-48">
<select
multiple
class="w-1/3 uppercase bold"
bind:value={selectedMainCategory}
>
Expand Down

0 comments on commit 5bdafa0

Please sign in to comment.