Skip to content

Commit

Permalink
Fixes #608
Browse files Browse the repository at this point in the history
  • Loading branch information
JonnyBurger committed Sep 29, 2021
1 parent fb2883a commit 8a3beed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/editor/components/PreviewToolbar.tsx
Expand Up @@ -32,7 +32,7 @@ const padding: React.CSSProperties = {

export const PreviewToolbar: React.FC = () => {
return (
<div style={container}>
<div style={container} className="css-reset">
<div style={sideContainer}>
<div style={padding} />
<TimeValue />
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/editor/components/TopPanel.tsx
Expand Up @@ -32,7 +32,7 @@ const leftContainer: React.CSSProperties = {

export const TopPanel: React.FC = () => {
return (
<div style={container} className="css-reset">
<div style={container}>
<MenuToolbar />
<div style={row}>
<SplitterContainer
Expand All @@ -43,7 +43,7 @@ export const TopPanel: React.FC = () => {
orientation="vertical"
>
<SplitterElement type="flexer">
<div style={leftContainer}>
<div style={leftContainer} className="css-reset">
<CompositionSelector />
</div>
</SplitterElement>
Expand Down
4 changes: 3 additions & 1 deletion packages/example/src/Video.tsx
Expand Up @@ -11,7 +11,9 @@ import {TenFrameTester} from './TenFrameTester';
import ThreeBasic from './ThreeBasic';
import {VideoSpeed} from './VideoSpeed';
import {VideoTesting} from './VideoTesting';
import './weird-css.css';

// Use it to test that UI does not regress on weird CSS
//import './weird-css.css';

export const Index: React.FC = () => {
const inputProps = getInputProps();
Expand Down

0 comments on commit 8a3beed

Please sign in to comment.