Fix incorrect font variable being used

This commit is contained in:
Gabe Kangas 2022-08-21 16:01:35 -07:00
parent 749493ce1f
commit 9e18cf2f0c
No known key found for this signature in database
GPG key ID: 9A56337728BC81EA
4 changed files with 5 additions and 5 deletions

View file

@ -25,10 +25,10 @@
background-color: var(--color-owncast-background);
& .nameChangeText {
font-weight: bold;
font-family: var(--theme-header-font-family);
font-family: var(--theme-text-display-font-family);
& .plain {
font-weight: normal;
font-family: var(--font-owncast-family) !important;
font-family: var(--theme-text-body-font-family) !important;
}
}
}

View file

@ -16,7 +16,7 @@
.user {
display: flex;
align-items: center;
font-family: var(--theme-header-font-family);
font-family: var(--theme-text-display-font-family);
font-weight: bold;
color: white;
}

View file

@ -1,7 +1,7 @@
@import 'styles/mixins.scss';
.badge {
font-family: var(--theme-header-font-family);
font-family: var(--theme-text-display-font-family);
font-weight: 500;
font-size: 0.4em;
text-transform: uppercase;

View file

@ -9,7 +9,7 @@
.user {
display: flex;
align-items: center;
font-family: var(--theme-header-font-family);
font-family: var(--theme-text-display-font-family);
font-weight: bold;
}
.message {