diff --git a/client/src/components/atoms/Button.module.scss b/client/src/components/atoms/Button.module.scss index 1726a92..1fb2f81 100644 --- a/client/src/components/atoms/Button.module.scss +++ b/client/src/components/atoms/Button.module.scss @@ -66,6 +66,7 @@ padding: 0; color: $brand-pink; font-size: $font-size-base; + font-weight: $font-weight-base; font-family: inherit; box-shadow: none; cursor: pointer; diff --git a/client/src/components/atoms/Button.tsx b/client/src/components/atoms/Button.tsx index 473db50..4beb571 100644 --- a/client/src/components/atoms/Button.tsx +++ b/client/src/components/atoms/Button.tsx @@ -1,4 +1,5 @@ import React, { PureComponent } from 'react' +import { Link } from 'react-router-dom' import cx from 'classnames' import styles from './Button.module.scss' @@ -10,6 +11,7 @@ interface ButtonProps { href?: string onClick?: any disabled?: boolean + to?: string } export default class Button extends PureComponent { @@ -21,6 +23,7 @@ export default class Button extends PureComponent { href, children, className, + to, ...props } = this.props @@ -32,11 +35,23 @@ export default class Button extends PureComponent { classes = styles.button } - return href ? ( - - {children} - - ) : ( + if (to) { + return ( + + {children} + + ) + } + + if (href) { + return ( + + {children} + + ) + } + + return ( diff --git a/client/src/routes/Publish/StepRegisterContent.module.scss b/client/src/routes/Publish/StepRegisterContent.module.scss index 60a5936..ce10169 100644 --- a/client/src/routes/Publish/StepRegisterContent.module.scss +++ b/client/src/routes/Publish/StepRegisterContent.module.scss @@ -3,3 +3,35 @@ .message { margin-bottom: $spacer; } + +.success { + composes: message; + background: $green; + padding: $spacer / 1.5; + border-radius: $border-radius; + color: $brand-white; + font-weight: $font-weight-bold; + text-align: center; + + &, + a, + button { + color: $brand-white; + } + + a, + button { + transition: color .2s ease-out; + + &:hover, + &:focus { + color: $brand-pink; + transform: none; + } + } + + a { + display: inline-block; + margin-right: $spacer; + } +} diff --git a/client/src/routes/Publish/StepRegisterContent.tsx b/client/src/routes/Publish/StepRegisterContent.tsx index 566f36a..982141f 100644 --- a/client/src/routes/Publish/StepRegisterContent.tsx +++ b/client/src/routes/Publish/StepRegisterContent.tsx @@ -1,6 +1,7 @@ import React, { PureComponent } from 'react' import Web3message from '../../components/organisms/Web3message' import Spinner from '../../components/atoms/Spinner' +import Button from '../../components/atoms/Button' import styles from './StepRegisterContent.module.scss' interface StepRegisterContentProps { @@ -26,11 +27,14 @@ export default class StepRegisterContent extends PureComponent< ) public publishedState = () => ( -
- Your asset is published! See it{' '} - here, submit - another asset by clicking{' '} - this.props.toStart()}>here +
+

Your asset is published!

+ +
) @@ -38,7 +42,6 @@ export default class StepRegisterContent extends PureComponent< return ( <> - {this.props.state.isPublishing ? ( this.publishingState() ) : this.props.state.publishingError ? (