-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[1.0] New design + new home page 🎉 (#1170)
* First iteration on new website * Purpleize * Start to new homepage * New Container component so can do full width bleeds + move sidebars to left. * SVG icon * Lighten mobile tab bar background purple more * Update the theme_color to our purple * Use presets * Use latest node * Use generated colors * remove nvmrc * Add missing colors module + argyle background pattern * Try debugging why things not building * Don't pull in presets * Simple grid front page + first draft for copy * Slip in a joinPath fix * More replacing of static colors with our autogenerated colors * Label color columns * Add index label * Add index label
- Loading branch information
1 parent
abf6fd9
commit 0f72739
Showing
27 changed files
with
484 additions
and
130 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,4 +1,6 @@ | ||
# How to contribute | ||
--- | ||
title: How to contribute | ||
--- | ||
|
||
## Filing an issue | ||
|
||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,23 @@ | ||
import React from "react" | ||
import presets from "../utils/presets" | ||
|
||
import { rhythm, scale } from "../utils/typography" | ||
|
||
export default ({ children, className, hasSideBar = true }) => | ||
<div | ||
css={{ | ||
maxWidth: hasSideBar | ||
? rhythm(presets.maxWidthWithSidebar) | ||
: rhythm(presets.maxWidth), | ||
margin: `0 auto`, | ||
padding: `${rhythm(1.5)} ${rhythm(3 / 4)}`, | ||
paddingBottom: rhythm(3.5), | ||
position: `relative`, | ||
[presets.Tablet]: { | ||
paddingBottom: rhythm(1.5), | ||
}, | ||
}} | ||
className={className} | ||
> | ||
{children} | ||
</div> |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.