Skip to content

Commit 614b914

Browse files
committed
Fixing classNames in SidebarMobile
1 parent ee04ff1 commit 614b914

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/sidebar-mobile/sidebar-mobile.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ export default class SidebarMobile extends React.Component {
1818
onTouchStart={this._handleTouchStart.bind(this)}
1919
onTouchMove={this._handleTouchMove.bind(this)}
2020
onTouchEnd={this._handleTouchEnd.bind(this)}>
21-
<div className="opener"
21+
<div className="sidebar-mobile__toggle"
2222
onTouchStart={this._handleTouchStart.bind(this)}
2323
onTouchMove={this._handleOpenerTouchMove.bind(this)}
2424
onTouchEnd={this._handleTouchEnd.bind(this)}>
2525
</div>
26-
<div className="sidebar-content">
26+
<div className="sidebar-mobile__content">
2727
<i className="sidebar-mobile__close icon-cross"
2828
onClick={ this._close.bind(this) } />
2929

@@ -165,4 +165,4 @@ export default class SidebarMobile extends React.Component {
165165
}
166166

167167
}
168-
}
168+
}

0 commit comments

Comments
 (0)