diff --git a/apps/client/src/common/components/input/time-input/TimeInputWithButton.module.scss b/apps/client/src/common/components/input/time-input/TimeInputWithButton.module.scss
index bd0621373..75f8ca1b7 100644
--- a/apps/client/src/common/components/input/time-input/TimeInputWithButton.module.scss
+++ b/apps/client/src/common/components/input/time-input/TimeInputWithButton.module.scss
@@ -2,6 +2,8 @@ $input-delayed-border-color: $ontime-delay-text;
.timeInput {
border: 1px solid transparent;
+ color: $label-gray;
+
&.delayed {
border: 1px solid $input-delayed-border-color;
}
diff --git a/apps/client/src/features/editors/editor-utils/EditorUtils.module.scss b/apps/client/src/features/editors/editor-utils/EditorUtils.module.scss
index cb6f1c45a..cf4c73a00 100644
--- a/apps/client/src/features/editors/editor-utils/EditorUtils.module.scss
+++ b/apps/client/src/features/editors/editor-utils/EditorUtils.module.scss
@@ -8,7 +8,7 @@
color: $ui-white;
transition-property: color;
transition-duration: $transition-time-action;
- border-radius: 99px;
+ border-radius: $component-border-radius-full;
// similar styles to ontime-button-subtle
background-color: $gray-1050;
@@ -27,13 +27,16 @@
.title {
font-size: 1rem;
- color: $ui-white;
+ color: $title-gray;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
}
.label {
display: block;
- font-size: calc(1rem - 3px);
+ font-size: $aux-text-size;
color: $label-gray;
- margin-bottom: 0.25rem;
+ margin-bottom: $element-inner-spacing;
max-width: max-content; // prevent label from taking entire row
}
diff --git a/apps/client/src/features/editors/editor-utils/EditorUtils.tsx b/apps/client/src/features/editors/editor-utils/EditorUtils.tsx
index 0def1aa7a..58b3ee81b 100644
--- a/apps/client/src/features/editors/editor-utils/EditorUtils.tsx
+++ b/apps/client/src/features/editors/editor-utils/EditorUtils.tsx
@@ -1,4 +1,4 @@
-import type { LabelHTMLAttributes, ReactNode } from 'react';
+import type { HTMLAttributes, LabelHTMLAttributes } from 'react';
import { IoArrowUp } from '@react-icons/all-files/io5/IoArrowUp';
import { type IconBaseProps } from '@react-icons/all-files/lib';
@@ -10,8 +10,13 @@ export function Corner({ className, ...elementProps }: IconBaseProps) {
return