diff --git a/frontend/src/lib/components/apps/editor/settingsPanel/AlignmentEditor.svelte b/frontend/src/lib/components/apps/editor/settingsPanel/AlignmentEditor.svelte
index f47a77e15f..8530de522d 100644
--- a/frontend/src/lib/components/apps/editor/settingsPanel/AlignmentEditor.svelte
+++ b/frontend/src/lib/components/apps/editor/settingsPanel/AlignmentEditor.svelte
@@ -16,38 +16,43 @@
{#if component.verticalAlignment !== undefined}
- {#if component.horizontalAlignment}
- Horizontal
-
-
- {/if}
- {#if component.type !== 'formcomponent' && component.verticalAlignment}
- Vertical
-
- {/if}
+
+ {#if component.horizontalAlignment}
+
+ {/if}
+ {#if component.type !== 'formcomponent' && component.verticalAlignment}
+
+ {/if}
+
{/if}
diff --git a/frontend/src/lib/components/apps/editor/settingsPanel/ComponentInputTypeEditor.svelte b/frontend/src/lib/components/apps/editor/settingsPanel/ComponentInputTypeEditor.svelte
index bfa859c9b5..4fb8ad3fde 100644
--- a/frontend/src/lib/components/apps/editor/settingsPanel/ComponentInputTypeEditor.svelte
+++ b/frontend/src/lib/components/apps/editor/settingsPanel/ComponentInputTypeEditor.svelte
@@ -12,10 +12,12 @@
}
const brackets = '${}'
+
+ let clientWidth: number
{#if componentInput.fieldType !== 'any'}
-
+
{#if componentInput.fieldType === 'textarea'}
@@ -29,7 +31,9 @@
size="xs"
disable={disableStatic}
>
- Static
+ {#if clientWidth > 250}
+ Static
+ {/if}
{/if}
@@ -39,10 +43,14 @@
startIcon={{ icon: faArrowRight }}
size="xs"
>
- Connected
+ {#if clientWidth > 250}
+ Connected
+ {/if}
- Computed
+ {#if clientWidth > 250}
+ Computed
+ {/if}
diff --git a/frontend/src/lib/components/apps/editor/settingsPanel/ComponentPanel.svelte b/frontend/src/lib/components/apps/editor/settingsPanel/ComponentPanel.svelte
index 83fe61de43..2ea0e72aad 100644
--- a/frontend/src/lib/components/apps/editor/settingsPanel/ComponentPanel.svelte
+++ b/frontend/src/lib/components/apps/editor/settingsPanel/ComponentPanel.svelte
@@ -90,11 +90,9 @@ declare const ${k} = ${JSON.stringify(v)};
{#if component}
-
+
{#if component.componentInput}
-
+
diff --git a/frontend/src/lib/components/propertyPicker/ObjectViewer.svelte b/frontend/src/lib/components/propertyPicker/ObjectViewer.svelte
index d0bbfc6db3..03dd0c83e4 100644
--- a/frontend/src/lib/components/propertyPicker/ObjectViewer.svelte
+++ b/frontend/src/lib/components/propertyPicker/ObjectViewer.svelte
@@ -57,7 +57,7 @@
{#each keys as key, index}
-
-