Skip to content

Commit 15e6c92

Browse files
authored
Merge pull request #463 from webpack/feature/cleanup-n-fixes
Cleanup and Minor Fixes
2 parents 4dba288 + 01733fa commit 15e6c92

File tree

7 files changed

+15
-217
lines changed

7 files changed

+15
-217
lines changed

components/contributors/contributors.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default ({contributors}) => {
1212
<h3>Contributors</h3>
1313
<div className="contributors__list">
1414
{
15-
(contributors).map((contributor) => (
15+
contributors.map(contributor => (
1616
<a key={ contributor }
1717
className="contributor"
1818
href={ `https://github.com/${contributor}` }>

components/cube/cube-style.scss

Lines changed: 0 additions & 36 deletions
This file was deleted.

components/cube/cube.jsx

Lines changed: 0 additions & 174 deletions
This file was deleted.

components/page/page-style.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,11 @@
3939
@include break {
4040
position: absolute;
4141
display: block;
42-
top: 1.4em;
43-
right: 1.75em;
42+
top: 1.5em;
43+
right: 1.5em;
4444
font-size: getFontSize(-1);
4545
text-transform: uppercase;
46+
47+
i { font-size:0.8em; }
4648
}
4749
}

components/page/page.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ export default ({ section, page }) => {
3030
<h1>{ page.title }</h1>
3131

3232
<a className="page__edit" href={ edit }>
33-
Edit this Page&nbsp;&nbsp;
33+
Edit this Page
34+
&nbsp;&nbsp;
3435
<i className="icon-edit" />
3536
</a>
3637

components/splash-viz/splash-viz-style.scss

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,15 @@
3434
display:flex;
3535
flex:1 1 auto;
3636
align-items:center;
37+
justify-content: center;
3738

38-
img { width:100%; }
39+
img {
40+
width:50%;
41+
42+
@include break {
43+
width:100%;
44+
}
45+
}
3946
}
4047

4148
&__output {

styles/partials/_vars.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ $colors: (
33
denim: #1D78C1,
44
fiord: #465E69,
55
elephant: #2B3A42,
6-
calico: #dfc08b,
7-
tussock: #c0903f,
86
white: #ffffff,
97
concrete: #f2f2f2,
108
alto: #dedede,

0 commit comments

Comments
 (0)