0

Tweak admin styles to be using less custom overrides

This commit is contained in:
Gabe Kangas 2023-01-13 14:20:46 -08:00
parent bf92705dfc
commit d5960524fc
No known key found for this signature in database
GPG Key ID: 4345B2060657F330
5 changed files with 2 additions and 31 deletions

View File

@ -23,8 +23,6 @@ export const AdminLayout: FC<AppProps> = ({ Component, pageProps }) => (
<link rel="stylesheet" href="/styles/admin/config-public-details.css" /> <link rel="stylesheet" href="/styles/admin/config-public-details.css" />
<link rel="stylesheet" href="/styles/admin/home.css" /> <link rel="stylesheet" href="/styles/admin/home.css" />
<link rel="stylesheet" href="/styles/admin/chat.css" /> <link rel="stylesheet" href="/styles/admin/chat.css" />
<link rel="stylesheet" href="/styles/admin/pages.css" />
<link rel="stylesheet" href="/styles/admin/offline-notice.css" />
<ServerStatusProvider> <ServerStatusProvider>
<AlertMessageProvider> <AlertMessageProvider>

View File

@ -22,7 +22,6 @@
padding: 1em; padding: 1em;
} }
.offline-content .list-section > .ant-card { .offline-content .list-section > .ant-card {
background-color: var(--black);
margin-bottom: 1em; margin-bottom: 1em;
} }
.offline-intro { .offline-intro {

View File

@ -5,10 +5,11 @@
height: 100vh; height: 100vh;
overflow: auto; overflow: auto;
z-index: 10; z-index: 10;
background-color: var(--nav-bg-color); background-color: var(--theme-color-background-main);
} }
.app-container .menu-container { .app-container .menu-container {
border-color: transparent; border-color: transparent;
background-color: unset;
} }
.app-container h1.owncast-title { .app-container h1.owncast-title {
padding: 1rem; padding: 1rem;

View File

@ -1,22 +0,0 @@
.stream-info-box {
background-color: var(--purple-dark);
color: var(--white);
padding: 0.25rem 0.5rem;
margin: 0 !important;
}
.stream-info-box .ant-typography-copy {
margin-left: 0.25rem;
}
.stream-info-label {
align-self: center;
text-align: right;
margin: 0;
}
.stream-info-container {
margin: 8px 0 4px 0;
display: grid;
grid-template-columns: max-content 1fr;
grid-template-rows: min-content min-content;
gap: 8px 8px;
grid-template-areas: '. .' '. .';
}

View File

@ -1,5 +0,0 @@
.upgrade-page h2,
.upgrade-page h3 {
color: var(--pink);
font-size: 1.25em;
}