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

Commit

Permalink
Merge pull request #231 from ryanml/fix-230
Browse files Browse the repository at this point in the history
Enforces 1024px min-width for settingsPage
  • Loading branch information
NejcZdovc authored Oct 23, 2018
2 parents 90cff53 + 17289c0 commit 3f59aac
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 3f59aac

Please sign in to comment.