Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
Fixes #230, enforces 1024px min-width for settingsPage
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanml committed Oct 23, 2018
1 parent 046ebcf commit 77ec0ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ exports[`SettingsPage tests basic tests matches the snapshot 1`] = `
.c0 {
background: #f2f4f7;
min-height: 100vh;
width: 100%;
min-width: 1024px;
font-family: "Poppins",sans-serif;
}
Expand Down
2 changes: 1 addition & 1 deletion src/features/rewards/settingsPage/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import styled from 'styled-components'
export const StyledWrapper = styled<{}, 'div'>('div')`
background: #f2f4f7;
min-height: 100vh;
width: 100%;
min-width: 1024px
font-family: "Poppins", sans-serif
`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ exports[`WelcomePage tests basic tests matches the snapshot 1`] = `
.c0 {
background: #f2f4f7;
min-height: 100vh;
width: 100%;
min-width: 1024px;
font-family: "Poppins",sans-serif;
}
Expand Down

0 comments on commit 77ec0ce

Please sign in to comment.