add 'beta' tag on splash screen
This commit is contained in:
parent
961f1cf2fd
commit
d5ecf797fd
2 changed files with 14 additions and 1 deletions
|
@ -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} />
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue