aboutsummaryrefslogtreecommitdiff
path: root/src/routes
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes')
-rw-r--r--src/routes/hololive/+page.svelte7
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>