Skip to content

Commit

Permalink
Merge branch 'master' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
Andarist committed Aug 9, 2020
2 parents 472a9da + 3c07186 commit 1d2b14d
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 19 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ Look here 👉 _[emotion babel plugin feature table and documentation](https://g
- [polished](https://github.com/styled-components/polished) - Lightweight set of Sass/Compass-style mixins/helpers for writing styles in JavaScript.
- [monad-ui](https://github.com/muhajirdev/monad-ui/) - Utility First CSS-In-JS
- [css-in-js-media](https://github.com/zx6658/css-in-js-media) - you can deal with responsive design using css-in-js easily with this `css-in-js-media` which is similar with include-media
- [emotion-native-extended](https://github.com/ItsWendell/emotion-native-extended) - Better styling support for Emotion Native with [React Native Extended Stylesheet](https://github.com/vitalets/react-native-extended-stylesheet)

### In the Wild

Expand Down
8 changes: 2 additions & 6 deletions site/src/components/DocWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,7 @@ export default ({
'none',
'none',
`1px solid ${colors.lighten(0.25, colors.border)}`
],
filter: 'grayscale(100%)',
// needed for the filter above, Chrome messed up layers without it
zIndex: 1
]
})}
>
<Search />
Expand Down Expand Up @@ -211,8 +208,7 @@ export default ({
],
gridRow: 2,
gridColumn: ['1 / span 2', '1 / span 2', '1 / span 1'],
paddingRight: [0, 0, 0],
filter: 'grayscale(100%)'
paddingRight: [0, 0, 0]
})}
>
{children}
Expand Down
3 changes: 1 addition & 2 deletions site/src/components/SiteHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ export default function SiteHeader() {
paddingTop: 24,
display: 'flex',
alignItems: 'center',
paddingBottom: space[2],
filter: 'grayscale(100%)'
paddingBottom: space[2]
}}
>
<Link
Expand Down
10 changes: 2 additions & 8 deletions site/src/pages/404.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,8 @@ const NotFoundPage = () => {
const title = 'NOT FOUND'
return (
<Layout title={title}>
<div
css={{
filter: 'grayscale(100%)'
}}
>
<h1>{title}</h1>
<p>You just hit a route that doesn&#39;t exist... the sadness.😢</p>
</div>
<h1>{title}</h1>
<p>You just hit a route that doesn&#39;t exist... the sadness.😢</p>
</Layout>
)
}
Expand Down
3 changes: 1 addition & 2 deletions site/src/pages/community.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ const Community = (props: *) => {
<Layout title={title}>
<div
css={mq({
gridColumn: '1 / span 2',
filter: 'grayscale(100%)'
gridColumn: '1 / span 2'
})}
>
<div>
Expand Down
2 changes: 1 addition & 1 deletion site/src/utils/style.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const colors = {
darken2: darken(0.15),
darken3: darken(0.2),
reallyLightPink: '#f9e9fb',
hightlight: '#D36AC2',
hightlight: '#C43BAD',
border: '#C865B9',
bg: '#FAF9FA',
color: '#1B1D1D',
Expand Down

0 comments on commit 1d2b14d

Please sign in to comment.