1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Minor style fixes

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2020-08-21 09:28:54 +03:00
parent 10bb420afa
commit 0bbdb09ec0
5 changed files with 9 additions and 6 deletions

View File

@ -15,7 +15,6 @@
.content-col { .content-col {
margin: 0; margin: 0;
padding-top: $padding * 3; padding-top: $padding * 3;
background-color: transparent;
.SubTitle { .SubTitle {
text-transform: none; text-transform: none;

View File

@ -8,7 +8,6 @@
padding: 0; padding: 0;
.content-col { .content-col {
background-color: transparent;
padding: $padding * 8 0; padding: $padding * 8 0;
h2 { h2 {
@ -40,6 +39,10 @@
.WizardLayout .head-col { .WizardLayout .head-col {
padding-top: 32px; padding-top: 32px;
overflow: hidden; overflow: hidden;
.Icon {
margin-top: -$margin * 2;
}
} }
} }

View File

@ -13,7 +13,6 @@ import { Input } from "../input";
import { Checkbox } from "../checkbox"; import { Checkbox } from "../checkbox";
import { Notifications } from "../notifications"; import { Notifications } from "../notifications";
import { Badge } from "../badge"; import { Badge } from "../badge";
import { Spinner } from "../spinner";
import { themeStore } from "../../theme.store"; import { themeStore } from "../../theme.store";
import { history } from "../../navigation"; import { history } from "../../navigation";
import { Tooltip } from "../tooltip"; import { Tooltip } from "../tooltip";

View File

@ -12,8 +12,6 @@
:root { :root {
--mainBackground: #1e2124; --mainBackground: #1e2124;
--textColorPrimary: #87909c;
--clusters-menu-bgc: #252729;
--main-layout-header: 40px; --main-layout-header: 40px;
} }
@ -79,7 +77,7 @@ hr {
} }
h1 { h1 {
color: white; color: $textColorPrimary;
font-size: 28px; font-size: 28px;
font-weight: normal; font-weight: normal;
letter-spacing: -.010em; letter-spacing: -.010em;

View File

@ -15,4 +15,8 @@
&.modal { &.modal {
background: transparentize(#222, .5); background: transparentize(#222, .5);
} }
h5 {
color: white;
}
} }