Skip to content

Commit

Permalink
Remove color emoji in fallback; add color emoji as fallback font.
Browse files Browse the repository at this point in the history
  • Loading branch information
amyjko committed Oct 14, 2023
1 parent 0e4bb2d commit e03ae3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/project/ProjectView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -1200,7 +1200,7 @@
{#key tileIDSequence}
<!-- Are all the tiles collapsed? Show a bit of feedback suggesting navigating down. -->
{#if layout.tiles.every((tile) => tile.isCollapsed())}
<div class="empty">⬇</div>
<div class="empty">⬇</div>
{:else}
<!-- Lay out each of the tiles according to its specification, in order if in free layout, but in layout order if not. -->
{#each $arrangement === Arrangement.Free ? layout.tiles : layout.getTilesInReadingOrder() as tile (tile.id)}
Expand Down
2 changes: 1 addition & 1 deletion static/style/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
--wordplay-type-color: var(--color-orange);

/* Fonts */
--wordplay-app-font: 'Noto Sans', 'Noto Emoji';
--wordplay-app-font: 'Noto Sans', 'Noto Color Emoji', 'Noto Emoji';
--wordplay-code-font: 'Noto Mono', 'Noto Emoji', 'Noto Sans';

/* Spacing */
Expand Down

0 comments on commit e03ae3b

Please sign in to comment.