Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
colinmorris committed Mar 13, 2017
1 parent 383fcce commit a2e7369
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,7 @@ li.octo img {
position: relative;
top: -5px;
}

.navLinkSongSim {
font-size: large;
}
4 changes: 2 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import './App.css';
import octocat from './octocat.svg';

const LINKS = [
{path: "/", name: "Songsim"},
{path: "/", name: "SongSim"},
{path: "/about", name: "About"},
{path: "/gallery", name: "Gallery"}
];
Expand All @@ -19,7 +19,7 @@ class App extends Component {
:
this.props.location.pathname.startsWith(link.path)
;
return (<li className={active ? "active" : ""}
return (<li className={"navLink" + link.name + (active ? " active" : "")}
key={link.name}
>
<Link to={link.path}>{link.name}</Link></li>);
Expand Down
2 changes: 1 addition & 1 deletion src/Toolbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class Toolbox extends Component {
type="text" readOnly={true}
value={perma} />
<button id="perma" className="btn" data-clipboard-text={perma}>
<span className="glyphicon glyphicon-copy" />
<span className="glyphicon glyphicon-copy" title="copy" />
</button>
</label>
);
Expand Down

0 comments on commit a2e7369

Please sign in to comment.