0

update layout colors to be consistently dark

This commit is contained in:
gingervitis 2021-01-09 19:13:25 -08:00 committed by Gabe Kangas
parent 5ed73d7f6f
commit 61e172908a
2 changed files with 22 additions and 3 deletions

View File

@ -58,7 +58,7 @@ export default function CurrentVariantsTable() {
]; ];
const videoQualityVariantData = videoQualityVariants.map((variant, index) => ({ key: index, ...variant })); const videoQualityVariantData = videoQualityVariants.map((variant, index) => ({ key: index + 1, ...variant }));
return ( return (
<> <>

View File

@ -10,7 +10,7 @@ body {
font-size: 16px; font-size: 16px;
// background-color: #1f1f21; background-color: #1f1f21;
} }
a { a {
@ -42,11 +42,26 @@ code {
background-color: $owncast-purple; background-color: $owncast-purple;
} }
// 07050d
// 020103
// GENERAL ANT FORM OVERRIDES // GENERAL ANT FORM OVERRIDES
.ant-layout,
.ant-layout-footer,
.ant-menu,
.ant-menu.ant-menu-dark {
background-color: transparent;
}
.ant-layout-header,
.ant-layout-sider {
background-color: #07050d;
}
.ant-menu-dark .ant-menu-inline.ant-menu-sub {
// background-color: rgba(255,255,255,.05);
background-color: #15102a;
}
.ant-card { .ant-card {
border-radius: .5em; border-radius: .5em;
} }
@ -74,6 +89,10 @@ code {
transition-delay: 0s; transition-delay: 0s;
transition-duration: 0.15s; transition-duration: 0.15s;
} }
.ant-table-thead > tr > th,
.ant-table-small .ant-table-thead > tr > th {
background-color: #000;
}
// markdown editor overrides // markdown editor overrides