Skip to content

Commit

Permalink
Remove unused styles in legacy css. For javascriptair#126
Browse files Browse the repository at this point in the history
  • Loading branch information
hdjirdeh committed Jun 18, 2016
1 parent 2f31ad8 commit a1fe0de
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 16 deletions.
14 changes: 0 additions & 14 deletions resources/css/legacy.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,6 @@
margin-top: 34px;
margin-bottom: 34px;
}
.\+space-children>* {
margin-left: 10px;
margin-right: 10px;
}
.\+font-smaller {
font-size: 12px;
}
hr.person-note-separator {
margin-top: 20px;
margin-bottom: 20px;
Expand All @@ -79,13 +72,6 @@
margin-top: 70px;
margin-bottom: 70px;
}
.\+space-children>* {
margin-left: 28px;
margin-right: 28px;
}
.\+font-smaller {
font-size: 18px;
}
hr.person-note-separator {
margin-top: 36px;
margin-bottom: 36px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/sponsors/sponsor-group.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function SponsorGroup({sponsors, title}) {
{
chunkedSponsors.map((rowSponsors, index) => {
return (
<div className={`${css(styles.group)} +space-children`} key={index}>
<div className={css(styles.group)} key={index}>
{rowSponsors.map((s, i) => <Sponsor key={i} {...s} />)}
</div>
)
Expand Down
2 changes: 1 addition & 1 deletion src/pages/episode/sections/show-notes/person-notes.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function PersonNotes({person}) {
const personClassNames = {root: css(styles.personRoot)}

return (
<div className={`${css(styles.personNotes)} +space-children`}>
<div className={css(styles.personNotes)}>
<Person {...person} personClassNames={personClassNames} />
{
nothing ?
Expand Down

0 comments on commit a1fe0de

Please sign in to comment.