diff --git a/src/renderer/components/+cluster-settings/cluster-settings.scss b/src/renderer/components/+cluster-settings/cluster-settings.scss index f20699de35..aa1faf3235 100644 --- a/src/renderer/components/+cluster-settings/cluster-settings.scss +++ b/src/renderer/components/+cluster-settings/cluster-settings.scss @@ -15,7 +15,6 @@ .content-col { margin: 0; padding-top: $padding * 3; - background-color: transparent; .SubTitle { text-transform: none; diff --git a/src/renderer/components/+preferences/preferences.scss b/src/renderer/components/+preferences/preferences.scss index 94c08e8f53..3440ec36cd 100644 --- a/src/renderer/components/+preferences/preferences.scss +++ b/src/renderer/components/+preferences/preferences.scss @@ -8,7 +8,6 @@ padding: 0; .content-col { - background-color: transparent; padding: $padding * 8 0; h2 { @@ -40,6 +39,10 @@ .WizardLayout .head-col { padding-top: 32px; overflow: hidden; + + .Icon { + margin-top: -$margin * 2; + } } } diff --git a/src/renderer/components/+preferences/preferences.tsx b/src/renderer/components/+preferences/preferences.tsx index fc91952213..1064b1314e 100644 --- a/src/renderer/components/+preferences/preferences.tsx +++ b/src/renderer/components/+preferences/preferences.tsx @@ -13,7 +13,6 @@ import { Input } from "../input"; import { Checkbox } from "../checkbox"; import { Notifications } from "../notifications"; import { Badge } from "../badge"; -import { Spinner } from "../spinner"; import { themeStore } from "../../theme.store"; import { history } from "../../navigation"; import { Tooltip } from "../tooltip"; diff --git a/src/renderer/components/app.scss b/src/renderer/components/app.scss index 0b1cd82ca8..82aa52f107 100755 --- a/src/renderer/components/app.scss +++ b/src/renderer/components/app.scss @@ -12,8 +12,6 @@ :root { --mainBackground: #1e2124; - --textColorPrimary: #87909c; - --clusters-menu-bgc: #252729; --main-layout-header: 40px; } @@ -79,7 +77,7 @@ hr { } h1 { - color: white; + color: $textColorPrimary; font-size: 28px; font-weight: normal; letter-spacing: -.010em; diff --git a/src/renderer/components/dialog/dialog.scss b/src/renderer/components/dialog/dialog.scss index 9d480962aa..7b2887be18 100644 --- a/src/renderer/components/dialog/dialog.scss +++ b/src/renderer/components/dialog/dialog.scss @@ -15,4 +15,8 @@ &.modal { background: transparentize(#222, .5); } + + h5 { + color: white; + } } \ No newline at end of file