UX: Login layout fixes (#133)

This commit is contained in:
Jordan Vidrine
2025-04-14 13:59:24 -05:00
committed by GitHub
parent 3a9917862d
commit 24165a53a6
4 changed files with 45 additions and 11 deletions
+14
View File
@@ -0,0 +1,14 @@
body.static-login {
#main-outlet-wrapper {
grid-template-areas:
"sidebar blank"
"sidebar content"
"sidebar below-content";
grid-template-rows: auto 1fr auto;
}
.login-welcome {
border-radius: none;
border: none;
box-shadow: none;
}
}
+9
View File
@@ -113,3 +113,12 @@ aside.onebox {
padding: 1em;
background-color: var(--d-content-background);
}
.no-ember {
#main-outlet {
border-radius: var(--d-border-radius-large);
margin: 0 var(--main-grid-gap) var(--main-grid-gap) var(--main-grid-gap);
padding: 2em;
max-height: calc(100vh - 50px - 1em - var(--main-grid-gap));
}
}