Revert "Fix CI test failure"

This reverts commit 870693b968de3f29b0ac97f6f92715613e1064e3.
This commit is contained in:
Fabio Berger 2018-04-24 17:28:18 +09:00
parent 870693b968
commit 4c5a632095

View File

@ -27,6 +27,12 @@ const styles: Styles = {
transform: 'rotate(45deg)',
cursor: 'pointer',
},
headers: {
WebkitMarginStart: 0,
WebkitMarginEnd: 0,
fontWeight: 'bold',
display: 'block',
},
h1: {
fontSize: '1.8em',
},
@ -52,16 +58,7 @@ export class AnchorTitle extends React.Component<AnchorTitleProps, AnchorTitleSt
opacity = this.state.isHovering ? 0.6 : 1;
}
return (
<div
className="relative flex"
style={{
...styles[this.props.headerSize],
fontWeight: 'bold',
display: 'block',
WebkitMarginStart: 0,
WebkitMarginEnd: 0,
}}
>
<div className="relative flex" style={{ ...styles[this.props.headerSize], ...styles.headers }}>
<div className="inline-block" style={{ paddingRight: 4 }}>
{this.props.title}
</div>