Skip to content

Commit

Permalink
Merge pull request #726 from oliviertassinari/tabs-root
Browse files Browse the repository at this point in the history
[tabs] remove useless css property
  • Loading branch information
Hai Nguyen committed Jun 2, 2015
2 parents 34c8f30 + f3b42dd commit abea14c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/tabs/tabs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,6 @@ var Tabs = React.createClass({
var themeVariables = this.context.muiTheme.component.tabs;

return {
root: {
position: 'relative'
},
tabItemContainer: {
margin: '0',
padding: '0',
Expand Down Expand Up @@ -115,7 +112,7 @@ var Tabs = React.createClass({
}
}, this);
return (
<div style={this.mergeAndPrefix(styles.root, this.props.style)}>
<div style={this.mergeAndPrefix(this.props.style)}>
<div style={this.mergeAndPrefix(styles.tabItemContainer, this.props.tabItemContainerStyle)}>
{tabs}
</div>
Expand Down

0 comments on commit abea14c

Please sign in to comment.