Skip to content

Commit

Permalink
fix font not displaying (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashlsun authored Jun 23, 2024
1 parent 6a6784a commit 1f00e27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ em {

b,
strong {
font-family: 'Hershey-Noailles-Futura-Duplex-Bold', arial, sans-serif;
font-family: 'Hershey-Noailles-Futura-Duplex-Bold', 'Hershey-Noailles-Futura-Duplex', arial, sans-serif;
font-weight: normal;
font-style: normal;
}


html {
font-family: 'Hershey-Noailles-Futura-Duplex-Regular', 'Arial', sans-serif;
font-family: 'Hershey-Noailles-Futura-Duplex', 'Arial', sans-serif;
background-color: rgb(255, 255, 248);
}

Expand Down
4 changes: 1 addition & 3 deletions src/routes/Item.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,7 @@
? 'bg-yellow-200'
: open
? 'outline-1 outline outline-[#e5e3ef] my-1'
: ''} focus:outline-none transition transition-margin font-bold {open
? 'pb-2'
: ''} select-none"
: ''} focus:outline-none transition transition-margin {open ? 'pb-2' : ''} select-none"
on:focus={() => dispatch('selected')}
tabindex="-1"
role="tree"
Expand Down

0 comments on commit 1f00e27

Please sign in to comment.