Making it work for ESP32
This commit is contained in:
parent
287d04bc97
commit
ac33a596c7
8 changed files with 80 additions and 19 deletions
|
@ -1,15 +1,8 @@
|
|||
// @use "../node_modules/@fontsource/antonio/scss/mixins" as Antonio;
|
||||
// $directory: "../node_modules/@fontsource/ubuntu";
|
||||
// @use "../node_modules/@fontsource/ubuntu/scss/mixins" as Ubuntu;
|
||||
|
||||
|
||||
// @import "../node_modules/bootstrap/scss/bootstrap";
|
||||
|
||||
@import "../node_modules/bootstrap/scss/functions";
|
||||
@import "../node_modules/bootstrap/scss/variables";
|
||||
@import "../node_modules/bootstrap/scss/variables-dark";
|
||||
|
||||
@import "@fontsource/antonio/latin-400.css";
|
||||
//@import "@fontsource/antonio/latin-400.css";
|
||||
@import "@fontsource/ubuntu/latin-400.css";
|
||||
@import "@fontsource/oswald/latin-400.css";
|
||||
|
||||
|
@ -100,6 +93,7 @@ nav {
|
|||
}
|
||||
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -13,4 +13,6 @@ export const load: LayoutLoad = async () => {
|
|||
await waitLocale()
|
||||
}
|
||||
|
||||
export const prerender = true;
|
||||
export const prerender = true;
|
||||
export const ssr = false;
|
||||
export const csr = true;
|
|
@ -93,7 +93,7 @@
|
|||
<hr>
|
||||
{#if $status.data}
|
||||
<Rendered status="{$status}"></Rendered>
|
||||
Screen cycle: <span on:click="{toggleTimer($status.timerRunning)}">{#if $status.timerRunning}⏵ running{:else}⏸ stopped{/if}</span>
|
||||
Screen cycle: <a style="cursor: pointer" on:click="{toggleTimer($status.timerRunning)}">{#if $status.timerRunning}⏵ running{:else}⏸ stopped{/if}</a>
|
||||
{/if}
|
||||
{/if}
|
||||
<hr>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue