Skip to content

Instantly share code, notes, and snippets.

@elliotec
Created June 13, 2017 20:56
Show Gist options
  • Save elliotec/fd3d226a473cac3e1a5e6880bcb88939 to your computer and use it in GitHub Desktop.
Save elliotec/fd3d226a473cac3e1a5e6880bcb88939 to your computer and use it in GitHub Desktop.
componentDidMount() {
this.alignBreadcrumbs();
}
alignBreadcrumbs() {
if (this.breadcrumbSection.scrollWidth > this.breadcrumbSection.offsetWidth) {
this.breadcrumbSection.style.direction = 'rtl';
}
}
render() {
return (
<section className={styles['bread-crumbs']} ref={breadcrumbSection => { this.breadcrumbSection = breadcrumbSection; }}>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment