Skip to content

Commit

Permalink
fix for text styles
Browse files Browse the repository at this point in the history
  • Loading branch information
igorgoldobin committed Jul 3, 2024
1 parent eb6b77d commit 39313c8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
14 changes: 8 additions & 6 deletions src/pages/GenerateKeys/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,12 +228,14 @@ const _GenerateKeysPage = ({
<Heading level={3} size="small">
<FormattedMessage defaultMessage="Step 8" />
</Heading>
<p className="mt20">
Progress to the next page to upload your <i>deposit_data-xxxxxxxxxx.json</i> to make the deposits for your validator keys. Please note that once the deposits are made, your validator may take up to 24 hours to become active.
</p>
<p className="mt20">
You will need the MetaMask (<a href='https://metamask.io/'>https://metamask.io/</a>) extension installed with a wallet that contains the correct STRAX balance before you can progress to make deposits for your validator(s).
</p>
<Text>
<p className="mt20">
Progress to the next page to upload your <i>deposit_data-xxxxxxxxxx.json</i> to make the deposits for your validator keys. Please note that once the deposits are made, your validator may take up to 24 hours to become active.
</p>
<p className="mt20">
You will need the MetaMask (<a href='https://metamask.io/'>https://metamask.io/</a>) extension installed with a wallet that contains the correct STRAX balance before you can progress to make deposits for your validator(s).
</p>
</Text>
</ClientDescriptionContainer>
</Box>
</Paper>
Expand Down
14 changes: 12 additions & 2 deletions src/pages/SelectClient/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import {
import { clientState } from '../../store/reducers/clientReducer';
import { useIntl } from 'react-intl';
import { OperatingSystemDownload } from '../../components/OperatingSystemDownload';
import styled from 'styled-components';

// Prop definitions
interface OwnProps {}
Expand Down Expand Up @@ -142,6 +143,15 @@ const _SelectClientPage = ({
}
);

const List = styled.ul`
font-family: 'Maison Neue', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
font-size: 18px;
line-height: 24px;
font-style: normal;
font-weight: 300;
color: #0F2A43;
`;

return (
<>
<WorkflowPageTemplate title='Introduction'>
Expand All @@ -151,11 +161,11 @@ const _SelectClientPage = ({
defaultMessage="The Stratis Launchpad will guide you through the steps of operating a Stratis Validator. There are three main components to this process:"
/>
</Text>
<ul>
<List>
<li><b>Client Setup</b> - Software is required to run a Stratis Validator, to simplify this management, Stratis has introduced the Stratis Launcher. The Stratis Launcher configures your remote Linux-based host and prepares it for operating as a Stratis Validator.</li>
<li><b>Generate Keys</b> - To run a Stratis Validator, you must create “Validator Keys”. The key generation process is simplified by using the Wagyu Keygen tool.</li>
<li><b>Validator Deposit</b> - Once you have configured your client and generated your keys, you need to make a deposit of 20,000 STRAX for each validator. These deposits can be done safely and securely through the Stratis Launchpad.</li>
</ul>
</List>
<Text className="mt20 mb10">
<FormattedMessage
defaultMessage="To get started, choose your Operating System below to download the Stratis Launcher and begin setting up your validator."
Expand Down

0 comments on commit 39313c8

Please sign in to comment.