Skip to content
Open
Show file tree
Hide file tree
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 src/components/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const App = ({ children, path, version, breadcrumbs }) => {
<a href="https://redux-form.com" className={styles.brand} />
<a
className={styles.github}
href="https://github.com/erikras/redux-form"
href="https://github.com/redux-form/redux-form"
title="Github"
target="_blank"
>
Expand Down Expand Up @@ -60,7 +60,7 @@ const App = ({ children, path, version, breadcrumbs }) => {
</a>
<a
className={styles.help}
href="https://github.com/erikras/redux-form/issues/new"
href="https://github.com/redux-form/redux-form/issues/new"
title="Github"
target="_blank"
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ code {
.github {
display: inline-block;
padding: 10px;
margin: 10px;
margin: 45px 10px 10px;
border-radius: 5px;
border: 1px solid #ccc;
background: white;
Expand Down
4 changes: 2 additions & 2 deletions src/components/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const Home = ({ version }) => {
.
</h3>
<GithubButton
user="erikras"
user="redux-form"
repo="redux-form"
type="star"
width={160}
Expand All @@ -43,7 +43,7 @@ const Home = ({ version }) => {
large
/>
<GithubButton
user="erikras"
user="redux-form"
repo="redux-form"
type="fork"
width={160}
Expand Down
4 changes: 3 additions & 1 deletion src/components/TwitterFollowButton.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import styles from "./TwitterFollowButton.scss";

import React from 'react'
import PropTypes from 'prop-types'

Expand All @@ -13,7 +15,7 @@ const TwitterFollowButton = ({ username, showUsername, showCount, large }) => {
props[ 'data-size' ] = 'large'
}
return (
<a href={`https://twitter.com/${username}`} className="twitter-follow-button" {...props}>
<a href={`https://twitter.com/${username}`} className={styles.twitterFollowButton} {...props}>
Follow @{username}
</a>
)
Expand Down
8 changes: 8 additions & 0 deletions src/components/TwitterFollowButton.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@import "./constants";

.twitter-follow-button,
.twitterFollowButton {
& a:not(:last_child) {
margin-right: 10px;
}
}