add 'beta' tag on splash screen

This commit is contained in:
Sean Yesmunt 2018-06-13 16:54:16 -04:00
parent 961f1cf2fd
commit d5ecf797fd
2 changed files with 14 additions and 1 deletions

View file

@ -19,7 +19,10 @@ class LoadScreen extends React.PureComponent<Props> {
return (
<div className="load-screen">
<h1 className="load-screen__title">{__('LBRY')}</h1>
<div className="load-screen__header">
<h1 className="load-screen__title">{__('LBRY')}</h1>
<sup className="load-scree__beta">beta</sup>
</div>
{isWarning ? (
<span className="load-screen__message">
<Icon size={20} icon={icons.ALERT} />

View file

@ -10,10 +10,20 @@
justify-content: center;
}
.load-screen__header {
display: flex;
}
.load-screen__title {
font-family: 'metropolis-bold';
font-size: 60px;
line-height: 100px;
margin-left: 40px; // width of "beta" superscript
}
.load-screen__beta {
padding-top: 23px;
padding-left: 10px;
}
.load-screen__message {