Skip to content

More prominent "start colouring" button #1439

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

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/src/frontend/user/my-account.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const MyAccountPage: React.FC = () => {
<ErrorBox msg={error} />
<form onSubmit={handleLogout}>
<div className="buttons-container">
<Link to="/edit/age" className="btn btn-warning">Start colouring</Link>
<Link to="/edit/age" className="btn btn-warning"><h1>Start colouring</h1></Link>
<input className="btn btn-secondary" type="submit" value="Log out"/>
</div>
</form>
Expand All @@ -85,7 +85,7 @@ export const MyAccountPage: React.FC = () => {
<h3 className="h3">API key</h3>
<p>{user.api_key || '-'}</p>
<form onSubmit={handleGenerateKey} className="form-group mb-3">
<input className="btn btn-warning" type="submit" value="Generate API key"/>
<input className="btn btn-secondary" type="submit" value="Generate API key"/>
</form>

<h3 className="h3">Open Source Code</h3>
Expand Down
Loading