Skip to content

Commit cc95481

Browse files
style(website): fix some styling
1 parent 3c3f59e commit cc95481

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

packages/overmind-website/src/components/App/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { css } from 'emotion'
22

33
export const pageWrapper = css`
4-
min-height: calc(100vh - 198px);
4+
min-height: calc(100vh);
55
`
66

77
export const wrapper = css`

packages/overmind-website/src/components/Guides/styles.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export const wrapper = css`
88
margin-top: 50px;
99
margin-left: auto;
1010
margin-right: auto;
11+
justify-content: center;
1112
`
1213

1314
export const guide = css`

packages/overmind-website/src/components/Videos/styles.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export const wrapper = css`
77
padding: var(--padding-5);
88
flex-wrap: wrap;
99
margin-top: 50px;
10+
justify-content: center;
1011
`
1112

1213
export const video = css`

packages/overmind-website/src/overmind/state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type State = {
3131
}
3232

3333
const state: State = {
34-
page: null,
34+
page: Page.HOME,
3535
currentGuide: null,
3636
currentVideo: null,
3737
currentApi: null,

0 commit comments

Comments
 (0)