This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* init central working remove a few unused packages update padding update update padding update update yarnlock re-add raf Brown -> Black, remove Fragment * move case study components to common * update snapshots, add silent to now github deployment * update destructuring * remove conditional display of case studies from render * updated naming for normalise args * design review updates * left align outcome intro * update alignment * update github template * remove GreyBodyPrimary * make outcomes copy bold * add CSS to place content on top of image * trigger build * trigger build
- Loading branch information
Showing
15 changed files
with
2,982 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
## Description - [Trello ticket](put a link to the trello ticket here) | ||
## Description - [Trello ticket](link) | ||
|
||
put a short summary of what you did here | ||
Put a short summary of what you did here | ||
|
||
## Review template | ||
## Checklist | ||
|
||
- [ ] Updating or creating a new page? Consider any SEO requirements such as: | ||
- [ ] Does the page have an `h1` tag? | ||
- [ ] Does the page have a correctly formed meta title? | ||
- [ ] Does the page have a correctly formed meta description? | ||
- [ ] Does the page have a unique `og:image` tag (if required)? | ||
- [ ] checked that this PR resolves the spec provided from trello / this description | ||
- [ ] ensured that this PR does not introduce any obvious bugs | ||
|
||
If you're unsure how to check these SEO requirements please reach out to your colleagues for help! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
"version": "1.0.1", | ||
"author": "YLD <[email protected]>", | ||
"dependencies": { | ||
"@rebass/grid": "^6.0.0-4", | ||
"@yldio/oss-stats": "^1.0.1", | ||
"airbnb-prop-types": "^2.13.2", | ||
"apr-reduce": "^3.0.3", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import styled from 'styled-components' | ||
|
||
export default styled.section` | ||
/* I know text should not be used here but black: colorVariables.darkBlack... */ | ||
background-color: ${({ theme }) => theme.colors.text}; | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import styled from 'styled-components' | ||
|
||
export default styled.section` | ||
background: ${props => props.theme.colors.blueBg}; | ||
color: ${props => props.theme.colors.white}; | ||
background: ${({ theme }) => theme.colors.blueBg}; | ||
color: ${({ theme }) => theme.colors.white}; | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import styled from 'styled-components' | ||
|
||
export default styled.section` | ||
background: ${({ theme }) => theme.colors.tanBg}; | ||
` |
Oops, something went wrong.