Skip to content

Commit

Permalink
Cleanups to make gh-pages deployment look better
Browse files Browse the repository at this point in the history
  • Loading branch information
jaryncolbert committed Jul 2, 2019
1 parent 2177113 commit cd3c872
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class App extends React.Component {
<div className="App">
<RowGroup>
<Link to="/wall-drawing-118" className="drawing-thumbnail">
<Thumbnail118 />
<Thumbnail118 scaleHeight={0.5} />
</Link>
</RowGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/components/CommonComponents.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ export function Slider(props) {
return (
<div className={"slider-container form-group " + props.className}>
<label htmlFor={sliderId}>{props.label}</label>
<output className="slider-output">{props.value}</output>
<input
className="form-control-range"
type="range"
Expand All @@ -65,6 +64,7 @@ export function Slider(props) {
id={sliderId}
onChange={props.changeHandler}
/>
<output className="slider-output">{props.value}</output>
</div>
);
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import GitHubLogo from "../assets/GitHub-Mark-32px.png";
export default function Footer() {
return (
<footer className="footer mt-auto py-3">
<div className="footer-container">
<div className="footer-container container-fluid">
<a
href="http://www.recurse.com"
title="Made with love at the Recurse Center"
Expand All @@ -15,7 +15,7 @@ export default function Footer() {
height="14px"
/>
</a>
{" | "}
<span className="divider">|</span>
<a href="https://github.com/jaryncolbert/solitude">
<img src={GitHubLogo} alt="github logo" />
Fork on GitHub
Expand Down
2 changes: 1 addition & 1 deletion src/components/drawings/Drawing164.js
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export default class Drawing164 extends React.Component {
max={lineMax}
/>
<Slider
label="Horizontal Line Length:"
label="Horiz. Line Length:"
value={horizLineLen}
changeHandler={e => this.setTargetValue(e, "horizLineLen")}
min={this.minLen}
Expand Down

0 comments on commit cd3c872

Please sign in to comment.