~tenacity/tenacity-dev

v2 tenacityaudio.org: Better css for mobile, set sr.ht as main repo v1 PROPOSED

joelchrono12: 1
 Better css for mobile, set sr.ht as main repo

 2 files changed, 4 insertions(+), 6 deletions(-)
Thanks for the patch! However, we're currently working on a major
redesign of the website [1], which is planned to roll into production
relatively soon. We'd rather not clog the commit log with small fixes,
especially as this has already been addressed in the new design.

As for the patch itself: great job! I can't spot any problems with it.
[1]: https://github.com/tenacityteam/tenacity/issues/163 
     (pretty long issue, scroll down to get to the actual development)
On Wed, 18 Aug 2021 16:40:28 +0300
"Sol Fisher Romanoff" <sol@solfisher.com> wrote:
Next
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/~tenacity/tenacity-dev/patches/24477/mbox | git am -3
Learn more about email & git

[PATCH v2 tenacityaudio.org] Better css for mobile, set sr.ht as main repo Export this patch

---
I fixed some mistakes from the previous patch, which are the following

- included a dot in a link
- made the width similar to the current site
- padding now does not affect top and bottom of site

 index.html | 4 ++--
 style.css  | 6 ++----
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/index.html b/index.html
index 62f4ecd..e8168de 100644
--- a/index.html
+++ b/index.html
@@ -13,7 +13,7 @@
            <p style="margin-top: -1rem; "><span style="margin-left: 2rem;">an easy-to-use, cross-platform multi-track audio editor/recorder</span></p>
        </header>
        <main>
            <p><a href="https://github.com/tenacityteam/tenacity">Source Repository</a> (<a href="https://git.sr.ht/~tenacity/tenacity">sr.ht</a>) · <a href="https://sr.ht/~tenacity/tenacity/lists">Mailing lists</a> · <a href="irc://irc.libera.chat/tenacity">IRC</a> (<a href="https://web.libera.chat/">web, /join #tenacity</a>) · <a href="https://github.com/tenacityteam/tenacity/releases">Releases</a> · <a rel="me" href="https://fosstodon.org/@tenacity">Mastodon</a>
            <p><a href="https://git.sr.ht/~tenacity/tenacity">Source Repository</a> (<a href="https://github.com/tenacityteam/tenacity">GitHub</a>) · <a href="https://sr.ht/~tenacity/tenacity/lists">Mailing lists</a> · <a href="irc://irc.libera.chat/tenacity">IRC</a> (<a href="https://web.libera.chat/">web, /join #tenacity</a>) · <a href="https://github.com/tenacityteam/tenacity/releases">Releases</a> · <a rel="me" href="https://fosstodon.org/@tenacity">Mastodon</a>
            </p>
            <p><strong>Tenacity</strong> is an easy-to-use, cross-platform multi-track audio editor/recorder for Windows, MacOS, GNU/Linux and other operating systems and is developed by a group of volunteers as open source software.</p>
            <p>Its features include:</p>
@@ -39,7 +39,7 @@
            </p>
            <h3>Development</h3>
            <p>
                The upstream development repository may be found on sr.ht.
                The upstream development repository may be found on <a href="https://git.sr.ht/~tenacity/tenacityaudio.org"> sr.ht</a>.
            </p>
            <p>
                Contribute by sending patches to the <a href="https://lists.sr.ht/~tenacity/tenacity-dev">development mailing list</a> at <a href="mailto:~tenacity/tenacity-dev@lists.sr.ht">~tenacity/tenacity-dev@lists.sr.ht</a>.
diff --git a/style.css b/style.css
index 7af9528..8be1b81 100644
--- a/style.css
+++ b/style.css
@@ -9,10 +9,8 @@ body {
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  max-width: 60rem;
  width: 50%;
  margin-left: 25%;
  margin-right: 25%;
  max-width: 58.5rem;
  padding: 0 1.5rem;
}

header {
-- 
2.32.0
Just a clarification, I am *removing* a dot, not adding it, which
is probably obvious once you read the changes.

Also, this is my first contribution using git send-email, thanks to
~sfr for the inspiration!