mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-08 02:52:39 -05:00
Fixed AdminX loading failure screen layout (#19072)
no issue This was broken when adding the AdminX demo app - it would no longer display at full height.
This commit is contained in:
parent
b6519e0f1f
commit
baa62c0bed
2 changed files with 3 additions and 3 deletions
|
@ -236,7 +236,7 @@ export default class AdminXComponent extends Component {
|
|||
ReactComponent = () => {
|
||||
const fallback = (
|
||||
<div className="admin-x-settings-container--loading" style={{
|
||||
width: '100vw',
|
||||
width: '100%',
|
||||
height: '100vh',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
|
|
|
@ -2212,7 +2212,7 @@ section.gh-ds h2 {
|
|||
}
|
||||
|
||||
.admin-x-container-error {
|
||||
height: 100%;
|
||||
height: 100vh;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
@ -2226,7 +2226,7 @@ section.gh-ds h2 {
|
|||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
gap: 20px;
|
||||
background: white;
|
||||
background: var(--white);
|
||||
box-shadow: var(--box-shadow-m);
|
||||
border-radius: 20px;
|
||||
padding: 5vmin;
|
||||
|
|
Loading…
Add table
Reference in a new issue