Fix typo + var defined in generated file

This commit is contained in:
Gabe Kangas 2022-05-17 17:56:39 -07:00
parent 97b2e64f58
commit f6525412c8
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA
4 changed files with 7 additions and 11 deletions

View File

@ -1,6 +1,7 @@
.root { .root {
background-color: var(--theme-background-secondary); background-color: var(--theme-background-secondary);
display: none; display: none;
--header-h: 64px;
} }
@media (min-width: 768px) { @media (min-width: 768px) {
@ -25,7 +26,7 @@ Only way to target it apparently
.chatHeader { .chatHeader {
text-align: center; text-align: center;
color: var(--text-color-secondry); color: var(--text-color-secondary);
border-bottom: 1px solid var(--color-owncast-gray-700); border-bottom: 1px solid var(--color-owncast-gray-700);
font-variant: small-caps; font-variant: small-caps;
} }

View File

@ -4,7 +4,7 @@
text-color: text-color:
value: 'var(--theme-text-color)' value: 'var(--theme-text-color)'
text-color-secondry: text-color-secondary:
value: 'var(--theme-text-color-secondary)' value: 'var(--theme-text-color-secondary)'
link-color: link-color:
value: 'var(--theme-link-color)' value: 'var(--theme-link-color)'

View File

@ -1,9 +1,9 @@
// Do not edit directly // Do not edit directly
// Generated on Tue, 17 May 2022 02:47:26 GMT // Generated on Wed, 18 May 2022 00:35:52 GMT
@text-color: var(--theme-text-color); @text-color: var(--theme-text-color);
@text-color-secondry: var(--theme-text-color-secondary); @text-color-secondary: var(--theme-text-color-secondary);
@link-color: var(--theme-link-color); @link-color: var(--theme-link-color);
@popover-background: #6941c6; @popover-background: #6941c6;
@background-color-light: var(--theme-background-secondary); @background-color-light: var(--theme-background-secondary);

View File

@ -1,11 +1,11 @@
/** /**
* Do not edit directly * Do not edit directly
* Generated on Tue, 17 May 2022 02:47:26 GMT * Generated on Wed, 18 May 2022 00:35:52 GMT
*/ */
:root { :root {
--text-color: var(--theme-text-color); --text-color: var(--theme-text-color);
--text-color-secondry: var(--theme-text-color-secondary); --text-color-secondary: var(--theme-text-color-secondary);
--link-color: var(--theme-link-color); --link-color: var(--theme-link-color);
--popover-background: #6941c6; --popover-background: #6941c6;
--background-color-light: var(--theme-background-secondary); --background-color-light: var(--theme-background-secondary);
@ -78,9 +78,4 @@
--default-link-color: #6941c6; --default-link-color: #6941c6;
--default-bg-color: #1b1a26; --default-bg-color: #1b1a26;
--default-text-color: #f2f4f7; --default-text-color: #f2f4f7;
/* Layout variables */
--header-h: 64px;
--chat-w: 320px;
--chat-input-h: 40.5px;
} }