0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-10 22:22:45 -05:00

fix(console): landing page placeholder css (#4064)

This commit is contained in:
Darcy Ye 2023-06-20 22:53:12 +08:00 committed by GitHub
parent 7902c1b0e3
commit a7e58837b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 6 deletions

View file

@ -14,7 +14,7 @@
justify-content: center;
text-align: center;
flex-grow: 1;
transform: translateY(-32px); // Half of the topbar height, to make the placeholder vertically centered.
padding-bottom: 64px; // the height of the topbar
.image {
> svg {
@ -39,7 +39,3 @@
}
}
}
.topbar {
z-index: 1;
}

View file

@ -6,7 +6,7 @@ import * as styles from './index.module.scss';
function TenantLandingPage() {
return (
<div className={styles.pageContainer}>
<Topbar className={styles.topbar} />
<Topbar />
<TenantLandingPageContent className={styles.placeholder} />
</div>
);