From 2c5ad51b47e2fc0b23fd5716bcf8dbe89b51097c Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Wed, 3 Mar 2021 14:39:26 +0300 Subject: [PATCH] Adding ids to all sections Signed-off-by: Alex Andreev --- .../components/+preferences/preferences.scss | 3 -- .../components/+preferences/preferences.tsx | 36 +++++++++---------- 2 files changed, 17 insertions(+), 22 deletions(-) diff --git a/src/renderer/components/+preferences/preferences.scss b/src/renderer/components/+preferences/preferences.scss index 87942d4646..5c02312432 100644 --- a/src/renderer/components/+preferences/preferences.scss +++ b/src/renderer/components/+preferences/preferences.scss @@ -1,5 +1,2 @@ .Preferences { - .extensions { - --flex-gap: calc(var(--unit) * 2); - } } \ No newline at end of file diff --git a/src/renderer/components/+preferences/preferences.tsx b/src/renderer/components/+preferences/preferences.tsx index 025dcb774a..5869fbe481 100644 --- a/src/renderer/components/+preferences/preferences.tsx +++ b/src/renderer/components/+preferences/preferences.tsx @@ -49,7 +49,7 @@ export class Preferences extends React.Component { onChange={({ value }: SelectOption) => preferences.colorTheme = value} /> -
+

Proxy

-
+

Start-up

-
+

Kubernetes

-
+

Kubectl binary

-
+

Helm Charts

-
+

Extensions

-
- {appPreferenceRegistry.getItems().map(({ title, components: { Hint, Input } }, index) => { - return ( -
-

{title}

- - - - -
- ); - })} -
+ {appPreferenceRegistry.getItems().map(({ title, components: { Hint, Input } }, index) => { + return ( +
+

{title}

+ + + + +
+ ); + })}
);