txtodo.app

[DORMANT] the official website of txtodo
git clone git://git.figbert.com/txtodo.app.git
Log | Files | Refs | README | LICENSE

commit f2395494a662659849f0f0c3c6f49d5394f56393
parent 98360b09c0280e8a78d641e872afbeceab608656
Author: FIGBERT <figbert@figbert.com>
Date:   Wed,  9 Dec 2020 13:16:46 -0800

Merge iOS and macOS download buttons

Diffstat:
Mpublic/main.css | 2+-
Msrc/App.svelte | 3+--
2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/public/main.css b/public/main.css @@ -55,7 +55,7 @@ main > * { #download-container { width: 100%; display: flex; - justify-content: space-between; + justify-content: space-around; align-content: center; } diff --git a/src/App.svelte b/src/App.svelte @@ -25,8 +25,7 @@ it lists short-term tasks to help you get things done without overthinking it. plus, it's lightweight, open-source, and built with swiftui. </h3> <div id="download-container"> - <div><DownloadIcon isDarkMode={isDarkMode} srcPair={["./apple-dark.svg", "./apple-light.svg"]} alt="apple logo" label="download the ios app" link="https://apps.apple.com/us/app/txtodo/id1504609185"/></div> - <div><DownloadIcon isDarkMode={isDarkMode} srcPair={["./apple-dark.svg", "./apple-light.svg"]} alt="apple logo" label="download the macos app" link="https://apps.apple.com/us/app/txtodo-companion/id1517267304"/></div> + <div><DownloadIcon isDarkMode={isDarkMode} srcPair={["./apple-dark.svg", "./apple-light.svg"]} alt="apple logo" label="download on the app store" link="https://apps.apple.com/us/app/txtodo/id1504609185"/></div> <div><DownloadIcon isDarkMode={isDarkMode} srcPair={["./github-dark.svg", "./github-light.svg"]} alt="github logo" label="view my code" link="https://git.figbert.com/FIGBERT/txtodo"/></div> </div> </section>