Fix tests

This commit is contained in:
Djuri Baars 2024-08-31 17:18:26 +02:00
parent a2ef9fb343
commit 4c5d961621
3 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@ nav {
text-transform: uppercase; text-transform: uppercase;
} }
.rbtclock { .btclock-wrapper {
.btclock { .btclock {
background: #000; background: #000;
display: flex; display: flex;

View File

@ -11,7 +11,7 @@
export let className = 'btclock-wrapper'; export let className = 'btclock-wrapper';
</script> </script>
<div class={className}> <div class={className} id={className}>
<div class="btclock"> <div class="btclock">
{#each status.data as char} {#each status.data as char}
{#if isSplitText(char)} {#if isSplitText(char)}

View File

@ -109,7 +109,7 @@
<hr /> <hr />
{#if $status.data} {#if $status.data}
<section class={lightMode ? 'lightMode' : 'darkMode'}> <section class={lightMode ? 'lightMode' : 'darkMode'}>
<Rendered status={$status} className="rbtclock"></Rendered> <Rendered status={$status} className="btclock-wrapper"></Rendered>
</section> </section>
{$_('section.status.screenCycle')}: {$_('section.status.screenCycle')}:
<a <a