WIP: better timeline styles

This commit is contained in:
Lachlan Kermode
2020-03-26 11:36:59 +01:00
parent ffb4548fce
commit b9efee8cca
14 changed files with 70 additions and 52 deletions

View File

@@ -3,10 +3,10 @@ import React from 'react'
const TimelineClip = ({ dims }) => (
<clipPath id='clip'>
<rect
x={dims.margin_left}
x={dims.marginLeft}
y='0'
width={dims.width - dims.margin_left - dims.width_controls}
height={dims.height - 25}
width={dims.width - dims.marginLeft - dims.width_controls}
height={dims.contentHeight}
/>
</clipPath>
)