Skip to content

Commit

Permalink
feat: limit width and height of wizard screen
Browse files Browse the repository at this point in the history
  • Loading branch information
squigglybob committed Dec 19, 2024
1 parent d07d7f3 commit 1b968c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dt-core/admin/components/setup-wizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ export class SetupWizard extends LitElement {
.wrap {
padding: 1rem;
min-height: 100vh;
max-width: 1200px;
margin: auto;
}
.cluster {
display: flex;
Expand Down Expand Up @@ -129,7 +131,7 @@ export class SetupWizard extends LitElement {
.cover {
display: flex;
flex-direction: column;
min-block-size: 80vh;
min-block-size: min(80vh, 800px);
}
.cover > * {
margin-block: 0.5rem;
Expand Down

0 comments on commit 1b968c3

Please sign in to comment.