desktop logo

This commit is contained in:
zeppi 2021-07-26 08:41:10 -04:00 committed by jessopb
parent ef77a5cd00
commit b1e8d2d6db
2 changed files with 5 additions and 3 deletions

View file

@ -253,9 +253,6 @@ const Header = (props: Props) => {
)}
<Button
className="header__navigation-item header__navigation-item--lbry"
// @if TARGET='app'
label={'LBRY'}
// @endif
onClick={() => {
if (history.location.pathname === '/') window.location.reload();
}}

View file

@ -17,7 +17,12 @@ export default function Logo(props: Props) {
const defaultWithLabel = (
<>
<Icon icon={ICONS.LBRY} />
{/* @if TARGET='app' */}
<div className={'button__label'}>{'LBRY'}</div>
{/* @endif */}
{/* @if TARGET='web' */}
<div className={'button__label'}>{LOGO_TITLE}</div>
{/* @endif */}
</>
);