Skip to content

Commit

Permalink
fix: layout min-height (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbovyn authored Jul 30, 2021
1 parent 85a2c2d commit ef01f4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/semcom-demo-app/lib/demo.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export class DemoComponent extends RxLitElement {
.demo-content {
display:flex;
flex-direction: column;
height: 100%;
min-height: 100%;
margin: 0 auto;
width: var(--site-max-width);
background-color: var(--color-background-root);
Expand Down Expand Up @@ -192,11 +192,11 @@ export class DemoComponent extends RxLitElement {
display:flex;
flex-direction: column;
justify-content: space-around;
height: 100%;
min-height: 100%;
}
.content > * {
margin: 100px;
margin: 60px 100px 100px 100px;
}
`,
];
Expand Down
2 changes: 1 addition & 1 deletion packages/semcom-demo-app/lib/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ html {
body {
display:flex;
justify-content: center;
height: 100%;
min-height: 100%;
background-color: var(--colors-background-normal);
}

Expand Down

0 comments on commit ef01f4b

Please sign in to comment.