diff --git a/ui/component/splash/view.jsx b/ui/component/splash/view.jsx index 6d6c5459c98..1dc5a2e6f69 100644 --- a/ui/component/splash/view.jsx +++ b/ui/component/splash/view.jsx @@ -241,8 +241,12 @@ export default class SplashScreen extends React.PureComponent { return (
-

LBRY

-
{details}
+ {!error && ( + <> +

LBRY

+
{details}
+ + )} {!animationHidden && !error && ( @@ -290,7 +294,7 @@ export default class SplashScreen extends React.PureComponent { )} {error && ( {__('Error starting up')}} subtitle={

diff --git a/ui/scss/component/_splash.scss b/ui/scss/component/_splash.scss index 56cedbde384..88aaa03f445 100644 --- a/ui/scss/component/_splash.scss +++ b/ui/scss/component/_splash.scss @@ -28,6 +28,13 @@ margin-top: -1rem; } +.splash__error-title { + font-size: 22px; + line-height: 1; + font-weight: var(--font-weight-bold); + color: #fff; +} + .splash__animation-toggle { position: fixed; top: var(--spacing-l);