Adjust y ticks height

This commit is contained in:
Franc Camps-Febrer
2019-01-17 11:24:31 -05:00
parent 8cbc17e388
commit ec3ea5a7c7
2 changed files with 3 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ class TimelineCategories extends React.Component {
}
getY(idx) {
return (idx + 1) * this.props.dims.trackHeight / this.props.categories.length
return (idx + 1) * this.props.dims.trackHeight / this.props.categories.length + 7.5;
}
renderCategory(category, idx) {