diff options
| author | Fuwn <[email protected]> | 2024-02-17 13:17:38 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-02-17 13:17:38 -0800 |
| commit | 2bc3418740399a2c54fca24c012b96e802b3f907 (patch) | |
| tree | 83b257a8797d77f385d14ec29e28af575b2cbfa2 /src | |
| parent | feat(settings): delete remote configuration (diff) | |
| download | due.moe-2bc3418740399a2c54fca24c012b96e802b3f907.tar.xz due.moe-2bc3418740399a2c54fca24c012b96e802b3f907.zip | |
fix(hololive): make space for pin icon
Diffstat (limited to 'src')
| -rw-r--r-- | src/routes/hololive/+page.svelte | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/routes/hololive/+page.svelte b/src/routes/hololive/+page.svelte index 50e4ee2c..96fbea67 100644 --- a/src/routes/hololive/+page.svelte +++ b/src/routes/hololive/+page.svelte @@ -153,12 +153,13 @@ icon={`pajamas:thumbtack${ pinnedStreams.includes(live.streamer) ? '-solid' : '' }`} + width="1em" /> </a> </div> {/if} - <p> + <p class="stream-heading"> [{#if live.streaming} <b class="live">{$locale().hololive.live}</b >{:else if new Date(live.time).getTime() < Date.now()} @@ -259,4 +260,8 @@ .stream { position: relative; } + + .stream-heading { + padding-right: 2em; + } </style> |