Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove whitespace at the bottom of the signer install page #109

Merged
merged 1 commit into from
Jun 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions www/src/App.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
.App {
text-align: center;
}

#root {
height: 100%;
display: flex;
flex-direction: column;
}

.App-logo {
Expand Down
41 changes: 23 additions & 18 deletions www/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function App() {
}, []);

return (
<div className='App bg-primary h-screen flex flex-col'>
<div className='App bg-primary flex flex-grow flex-col'>
<header className='h-16 flex flex-shrink-0 px-4 sm:px-6 justify-between items-center border border-gray-300 border-x-0 border-t-0'>
<a
className='flex gap-2 cursor-pointer'
Expand Down Expand Up @@ -72,31 +72,35 @@ function App() {
<h1 className='mt-6 text-4xl sm:text-6xl'>
Your Gateway to Web3 Privacy.
</h1>
<a className='px-6 py-4 text-white text-2xl bg-button rounded-full mt-12 cursor-pointer'
href=
{os === 'Mac'
? 'https://github.com/Manta-Network/manta-signer/releases/download/0.6.0/manta-signer-macos-latest_0.6.0-103_x64.dmg'
: os === 'Windows'
<a
className='px-6 py-4 text-white text-2xl bg-button rounded-full mt-12 cursor-pointer'
href={
os === 'Mac'
? 'https://github.com/Manta-Network/manta-signer/releases/download/0.6.0/manta-signer-macos-latest_0.6.0-103_x64.dmg'
: os === 'Windows'
? 'https://github.com/Manta-Network/manta-signer/releases/download/0.6.0/manta-signer-windows-2019_0.6.0.102_x64.msi'
: 'https://github.com/Manta-Network/manta-signer/releases/download/0.6.0/manta-signer-ubuntu-18.04_0.6.0_amd64.deb'}
title=
{os === 'Mac'
? 'Manta Signer for macOS 10.15 or later'
: os === 'Windows'
: 'https://github.com/Manta-Network/manta-signer/releases/download/0.6.0/manta-signer-ubuntu-18.04_0.6.0_amd64.deb'
}
title={
os === 'Mac'
? 'Manta Signer for macOS 10.15 or later'
: os === 'Windows'
? 'Manta Signer for Windows 10 or later'
: 'Manta Signer for Ubuntu 18.04 or later'}
: 'Manta Signer for Ubuntu 18.04 or later'
}
>
Download Manta Signer
</a>
<p className='text-center text-secondary text-2xl mt-3'>
{os === 'Mac'
? 'For macOS 10.15 or later'
: os === 'Windows'
? 'For Windows 10 or later'
: 'For Ubuntu 18.04 or later'}
? 'For Windows 10 or later'
: 'For Ubuntu 18.04 or later'}
</p>
<p className='mt-10 text-secondary text-lg max-w-lg'>
Manta Signer enables access to all privacy tools and services on Manta Network, Calamari Network, and Dolphin Testnet.
Manta Signer enables access to all privacy tools and services on Manta
Network, Calamari Network, and Dolphin Testnet.
</p>
<a
href='https://docs.manta.network/docs/concepts/Signer?utm_source=website&utm_id=manta-signer-landing-page'
Expand All @@ -107,7 +111,9 @@ function App() {
</a>

<p className='mt-10 text-secondary text-lg max-w-lg'>
Try MantaPay on the Dolphin Testnet - MantaPay allows users to privatize public assets, transfer private assets, and convert private assets back into public assets.
Try MantaPay on the Dolphin Testnet - MantaPay allows users to
privatize public assets, transfer private assets, and convert private
assets back into public assets.
</p>
<a
href='https://app.dolphin.manta.network/?utm_source=website&utm_id=manta-signer-landing-page#/transact'
Expand All @@ -116,9 +122,8 @@ function App() {
>
Try Dolphin Testnet
</a>

</div>
</div >
</div>
);
}

Expand Down
2 changes: 2 additions & 0 deletions www/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ body {
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
height: 100%;
}

code {
Expand All @@ -32,4 +33,5 @@ html {
--color-fill-secondary: #7e7e7e;
--gradient-bg-primary: linear-gradient(to top bottom, #b0d2eb, white);
--gradient-button-primary: linear-gradient(to left, #26c8bf, #1fa2f9);
height: 100%;
}