This commit is contained in:
zeppi 2021-08-03 13:32:28 -04:00 committed by jessopb
parent e3e5c50a13
commit ff5ca7398c
2 changed files with 3 additions and 3 deletions

View file

@ -31,7 +31,7 @@ export default function Logo(props: Props) {
if (LOGO_TEXT_LIGHT) { if (LOGO_TEXT_LIGHT) {
return ( return (
<> <>
<img className={'file-viewer__overlay-logo--videoend'} src={LOGO_TEXT_LIGHT} /> <img className={'embed__overlay-logo'} src={LOGO_TEXT_LIGHT} />
</> </>
); );
} else { } else {
@ -41,7 +41,7 @@ export default function Logo(props: Props) {
if (LOGO_TEXT_LIGHT) { if (LOGO_TEXT_LIGHT) {
return ( return (
<> <>
<img className={'file-viewer__overlay-logo--videoend'} src={LOGO_TEXT_LIGHT} /> <img className={'embed__overlay-logo'} src={LOGO_TEXT_LIGHT} />
</> </>
); );
} else { } else {

View file

@ -61,7 +61,7 @@
} }
} }
.file-viewer__overlay-logo--videoend { .embed__overlay-logo {
max-height: 3.5rem; max-height: 3.5rem;
max-width: 12rem; max-width: 12rem;
} }