Skip to content

Commit

Permalink
Hotkeys information changed. Medium icon added.
Browse files Browse the repository at this point in the history
  • Loading branch information
paveli committed Jul 3, 2019
1 parent 4a36f61 commit ecc7133
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/components/Onboarding.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { Component } from "react";
import { Card, Button } from "rebass";
import styled from "styled-components";
import { connect } from "react-redux";
import { Twitter, Github, Telegram } from "styled-icons/boxicons-logos";
import { Twitter, Github, Telegram, Medium } from "styled-icons/boxicons-logos";
import { GrinWink, Keyboard } from "styled-icons/fa-regular";
import * as Cookies from "js-cookie";

Expand Down Expand Up @@ -56,6 +56,12 @@ const TelegramIcon = styled(Telegram)`
}
`;

const MediumIcon = styled(Medium)`
&:hover {
color: black;
}
`;

class Onboarding extends Component {
constructor(props) {
super(props);
Expand Down Expand Up @@ -130,8 +136,8 @@ class Onboarding extends Component {
).
</p>
<p>
Once finished writing, press CTRL+C to copy text to clipboard. Then
paste and edit in your favorite editor.
Once finished writing, press CTRL+SHIFT+C to copy text to clipboard.
Then paste and edit in your favorite editor.
</p>
<br />

Expand Down Expand Up @@ -160,6 +166,9 @@ class Onboarding extends Component {
</p>

<p style={{ textAlign: "right" }}>
<a href="https://medium.com/@paveli/write-in-flow-edit-later-406fc74a4689">
<MediumIcon size="30" color="grey" />
</a>{" "}
<a href="https://twitter.com/paveli" target="blank">
<TwitterIcon size="30" color="grey" />
</a>{" "}
Expand Down

0 comments on commit ecc7133

Please sign in to comment.