~kmaasrud/td

bb6cc2d711d49ebd75e563328b95f64b74039be5 — Knut Magnus Aasrud 7 months ago 8642449
feat: add footer
1 files changed, 14 insertions(+), 0 deletions(-)

M src/index.html
M src/index.html => src/index.html +14 -0
@@ 114,6 114,16 @@
        .delete:hover {
            color: var(--hl);
        }

        footer {
            position: fixed;
            bottom: 1em;
            left: 0;
            width: 100vw;
            text-align: center;
            font-size: .8rem;
            opacity: .6;
        }
    </style>
    <script type="module">
        var tasks = JSON.parse(localStorage.getItem('tasks')) || [];


@@ 179,6 189,10 @@
        <ul class="td-list">
        </ul>
    </main>

    <footer>
        <p>for more minimal web apps, see <a href="https://mouse.community">mouse.community</a>.</p>
    </footer>
</body>

</html>