fix: load screen style
This commit is contained in:
parent
21661fce85
commit
b111fdf0f7
2 changed files with 11 additions and 2 deletions
|
@ -32,8 +32,12 @@ class LoadScreen extends React.PureComponent<Props> {
|
|||
{error ? (
|
||||
<Fragment>
|
||||
<h3>{__('Uh oh. Sean must have messed something up. Try refreshing to fix it.')}</h3>
|
||||
<div className="card__actions">
|
||||
<Button label="Refresh" button="alt" onClick={() => window.location.reload()} />
|
||||
<div className="load-screen__actions">
|
||||
<Button
|
||||
label="Refresh"
|
||||
className="btn--load-screen"
|
||||
onClick={() => window.location.reload()}
|
||||
/>
|
||||
</div>
|
||||
<div className="load-screen__help">
|
||||
<p>
|
||||
|
|
|
@ -68,3 +68,8 @@
|
|||
font-size: 14px;
|
||||
padding-top: $spacing-vertical;
|
||||
}
|
||||
|
||||
.load-screen__actions {
|
||||
font-size: 1.2em;
|
||||
margin-top: var(--spacing-vertical-medium);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue