Skip to content

Commit

Permalink
feat: add custom font support
Browse files Browse the repository at this point in the history
  • Loading branch information
Copay committed Aug 8, 2019
1 parent 86bd53d commit 099ee99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default class CaraokeView extends HTMLElement {
text-shadow: 0 0 0.05em white;
transition: color 1s;
font-size: 5em;
font-family: "Source Han Serif";
font-family: caraoke-custom-font, "Source Han Serif";
font-weight: 900;
}
#drawer > #pointer ~ * {
Expand Down
2 changes: 1 addition & 1 deletion src/view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default class CaraokeView extends HTMLElement {
text-shadow: 0 0 0.05em white;
transition: color 1s;
font-size: 5em;
font-family: "Source Han Serif";
font-family: caraoke-custom-font, "Source Han Serif";
font-weight: 900;
}
#drawer > #pointer ~ * {
Expand Down

0 comments on commit 099ee99

Please sign in to comment.