diff --git a/apps/client/src/common/components/collapse-bar/CollapseBar.module.scss b/apps/client/src/common/components/collapse-bar/CollapseBar.module.scss index 290a15e70..63e519f1c 100644 --- a/apps/client/src/common/components/collapse-bar/CollapseBar.module.scss +++ b/apps/client/src/common/components/collapse-bar/CollapseBar.module.scss @@ -6,6 +6,7 @@ display: flex; justify-content: space-between; color: $section-white; + margin-top: $main-spacing; border-bottom: 1px solid $border-color-ondark; padding-bottom: $element-inner-spacing; margin-bottom: $element-spacing; diff --git a/apps/client/src/features/editors/Editor.module.scss b/apps/client/src/features/editors/Editor.module.scss index b9c629b76..b538001de 100644 --- a/apps/client/src/features/editors/Editor.module.scss +++ b/apps/client/src/features/editors/Editor.module.scss @@ -164,7 +164,7 @@ $playback-width: 450px; } .header { - background-color: #202020; + background-color: $gray-1200; padding: 8px; border-left: 1px solid $white-10; } @@ -172,10 +172,8 @@ $playback-width: 450px; .editor { grid-area: even; - height: calc(100% - 24px); .content { - height: calc(100% - 24px); overflow: hidden; } } @@ -187,7 +185,6 @@ $playback-width: 450px; .content { display: flex; flex-direction: column; - height: calc(100% - 24px); overflow: hidden; } } diff --git a/apps/client/src/features/info/CollapsableInfo.tsx b/apps/client/src/features/info/CollapsableInfo.tsx index 207052c4b..5e7fad578 100644 --- a/apps/client/src/features/info/CollapsableInfo.tsx +++ b/apps/client/src/features/info/CollapsableInfo.tsx @@ -2,8 +2,6 @@ import { PropsWithChildren, useState } from 'react'; import CollapseBar from '../../common/components/collapse-bar/CollapseBar'; -import style from './Info.module.scss'; - interface CollapsableInfoProps { title: string; } @@ -13,9 +11,9 @@ export default function CollapsableInfo(props: PropsWithChildren + <> setCollapsed((prev) => !prev)} /> {!collapsed && children} - + ); } diff --git a/apps/client/src/features/info/Info.module.scss b/apps/client/src/features/info/Info.module.scss index fb49ac282..9d824b570 100644 --- a/apps/client/src/features/info/Info.module.scss +++ b/apps/client/src/features/info/Info.module.scss @@ -9,10 +9,6 @@ justify-content: space-between; } -.container { - margin-top: $main-spacing; -} - .labels { font-size: $inner-section-text-size; display: flex; diff --git a/apps/client/src/features/info/InfoLogger.module.scss b/apps/client/src/features/info/InfoLogger.module.scss index 33ba38860..916bc3015 100644 --- a/apps/client/src/features/info/InfoLogger.module.scss +++ b/apps/client/src/features/info/InfoLogger.module.scss @@ -4,12 +4,8 @@ $info-gray: $secondary-text-gray; $info-hover: $section-white; -.infoLoggerContainer { - max-height: 80%; - height: 100% -} - .log { + flex: 1; height: 100%; overflow-y: scroll; font-size: 0.8em; diff --git a/apps/client/src/features/info/InfoLogger.tsx b/apps/client/src/features/info/InfoLogger.tsx index 5abab2ada..493eff34d 100644 --- a/apps/client/src/features/info/InfoLogger.tsx +++ b/apps/client/src/features/info/InfoLogger.tsx @@ -56,7 +56,7 @@ export default function InfoLogger() { }, []); return ( -
+ <>
+ ); }