Increase button width
This commit is contained in:
parent
91eaf72051
commit
ba161e9a6f
|
@ -13,7 +13,7 @@ class Controls extends Component {
|
||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className="btn btn-secondary btn-standard btn-lg"
|
className="btn btn-secondary btn-lg setup__button"
|
||||||
onClick={this.props.prevStep}
|
onClick={this.props.prevStep}
|
||||||
>
|
>
|
||||||
<Trans>back</Trans>
|
<Trans>back</Trans>
|
||||||
|
@ -30,7 +30,7 @@ class Controls extends Component {
|
||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className="btn btn-success btn-standard btn-lg"
|
className="btn btn-success btn-lg setup__button"
|
||||||
onClick={this.props.nextStep}
|
onClick={this.props.nextStep}
|
||||||
>
|
>
|
||||||
<Trans>get_started</Trans>
|
<Trans>get_started</Trans>
|
||||||
|
@ -41,7 +41,7 @@ class Controls extends Component {
|
||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
type="submit"
|
type="submit"
|
||||||
className="btn btn-success btn-standard btn-lg"
|
className="btn btn-success btn-lg setup__button"
|
||||||
disabled={
|
disabled={
|
||||||
this.props.invalid
|
this.props.invalid
|
||||||
|| this.props.pristine
|
|| this.props.pristine
|
||||||
|
@ -55,7 +55,7 @@ class Controls extends Component {
|
||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className="btn btn-success btn-standard btn-lg"
|
className="btn btn-success btn-lg setup__button"
|
||||||
onClick={this.props.nextStep}
|
onClick={this.props.nextStep}
|
||||||
>
|
>
|
||||||
<Trans>next</Trans>
|
<Trans>next</Trans>
|
||||||
|
@ -65,7 +65,7 @@ class Controls extends Component {
|
||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className="btn btn-success btn-standard btn-lg"
|
className="btn btn-success btn-lg setup__button"
|
||||||
onClick={() => this.props.openDashboard(this.props.address)}
|
onClick={() => this.props.openDashboard(this.props.address)}
|
||||||
>
|
>
|
||||||
<Trans>open_dashboard</Trans>
|
<Trans>open_dashboard</Trans>
|
||||||
|
|
|
@ -109,3 +109,9 @@
|
||||||
.form__message--error {
|
.form__message--error {
|
||||||
color: #cd201f;
|
color: #cd201f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.setup__button {
|
||||||
|
min-width: 120px;
|
||||||
|
padding-left: 30px;
|
||||||
|
padding-right: 30px;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue