diff options
Diffstat (limited to 'styles/editor.css')
-rw-r--r-- | styles/editor.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/styles/editor.css b/styles/editor.css index 4b1e006..d1a6256 100644 --- a/styles/editor.css +++ b/styles/editor.css @@ -100,6 +100,7 @@ grid-column: 2; grid-row: 3; background-color: var(--c100); + overflow: hidden; } .appGrid .viewer { @@ -158,6 +159,7 @@ .appGrid .timeline .keyframes { height: 100%; + width: calc(var(--zoom) * var(--total-frames) * 1px); } .appGrid .timeline .keyframes .frame { @@ -223,3 +225,8 @@ .timeline .scrubber .head { fill: var(--blue); } .timeline .scrubber .needle { background-color: var(--blue); } +.timeline .labels .label { + transform: translate(-50%, -100%); + color: var(--c700); +} + |