~kmaasrud/inbox

mouse.community: make logo responsive v1 APPLIED

~glorifiedgluer: 1
 make logo responsive

 1 files changed, 26 insertions(+), 18 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~kmaasrud/inbox/patches/46592/mbox | git am -3
Learn more about email & git

[PATCH mouse.community] make logo responsive Export this patch

From: Victor Freire <victor@freire.dev.br>

---
 public/index.html | 44 ++++++++++++++++++++++++++------------------
 1 file changed, 26 insertions(+), 18 deletions(-)

diff --git a/public/index.html b/public/index.html
index c3e4012..016304f 100644
--- a/public/index.html
+++ b/public/index.html
@@ -26,15 +26,6 @@
            margin-top: 5rem;
        }

        header {
            text-align: center;
            & img {
                height: auto;
                width: 10em;
                margin-bottom: -3em;
            }
        }

        @media screen and (max-width: 350px) {
            header {
                & h1 {
@@ -42,20 +33,37 @@
                }
            }
        }

        main {
            display: flex;
            flex-direction: column;
        }

        header {
            text-align: center;
        }

        header > img {
            width: 10em;
            margin-top: -3em;
            margin-bottom: -3em;
        }
    </style>
</head>

<body>
    <header>
        <img src="logo.jpeg">
        <h1>mouse.community</h1>
    </header>
    <main>
        <p>welcome to a community of people who appreciate being small</p>
        <p>this is a sanctuary where everyone, no matter their tiny stature, can find their place. we don't do anything
            special, but we are a happy bunch from all around the world who enjoy sharing ideas and thoughts</p>
        <p>we're working on stuff to fill this page with. in the meantime, if you're interested in joining, you can send
            an email to <code>join@mouse.community</code> with a brief description of why you want to join</p>
        <header>
            <img src="logo.jpeg">
            <h1>mouse.community</h1>
        </header>
        <article>
            <p>welcome to a community of people who appreciate being small</p>
            <p>this is a sanctuary where everyone, no matter their tiny stature, can find their place. we don't do anything
                special, but we are a happy bunch from all around the world who enjoy sharing ideas and thoughts</p>
            <p>we're working on stuff to fill this page with. in the meantime, if you're interested in joining, you can send
                an email to <code>join@mouse.community</code> with a brief description of why you want to join</p>
        </article>
    </main>
</body>

-- 
2.38.5
Thanks for the patch! Seems like you have applied it and pushed already,
so that's good.