Formatting
This commit is contained in:
parent
5356890963
commit
ee244ac57d
|
@ -28,10 +28,9 @@
|
|||
|
||||
// Footer stuff
|
||||
/**
|
||||
* @type {number}
|
||||
*/
|
||||
* @type {number}
|
||||
*/
|
||||
let footerHeight;
|
||||
|
||||
</script>
|
||||
|
||||
<div class="-z-20 absolute">
|
||||
|
@ -53,9 +52,15 @@
|
|||
</div>
|
||||
<!-- Footer -->
|
||||
<!-- To make this stick to the bottom, actually make it absolute, instead of fixed -->
|
||||
<div bind:clientHeight={footerHeight} class="bg-slate-100 dark:bg-purple-900 dark:text-pink-50 w-full h-min md:h-10 lg:pl-20 fixed bottom-0">
|
||||
<div
|
||||
bind:clientHeight={footerHeight}
|
||||
class="bg-slate-100 dark:bg-purple-900 dark:text-pink-50 w-full h-min md:h-10 lg:pl-20 fixed bottom-0"
|
||||
>
|
||||
<div class="h-full">
|
||||
<button on:click={onMusicToggle} class="bg-white dark:bg-[#B68BD6] dark:text-[#040033] border-black border rounded h-min w-20 mt-1">
|
||||
<button
|
||||
on:click={onMusicToggle}
|
||||
class="bg-white dark:bg-[#B68BD6] dark:text-[#040033] border-black border rounded h-min w-20 mt-1"
|
||||
>
|
||||
{#if musicPaused}
|
||||
<span class="font-mono">▶</span>
|
||||
Play
|
||||
|
|
Loading…
Reference in New Issue