facepaint icon indicating copy to clipboard operation
facepaint copied to clipboard

Responsive style values for css-in-js.

Results 14 facepaint issues
Sort by recently updated
recently updated
newest added

I would like to use facepaint inside an object, but I am not sure this is possible. Something like: ```jsx const mq = facepaint([ '@media(min-width: 420px)', ]) const Container =...

I not found nothing about this property in documentation... it's possible? ![Screen Shot 2021-03-22 at 12 46 28](https://user-images.githubusercontent.com/26128380/112017809-bb1c6200-8b0c-11eb-9502-f271c4f25793.png)

Is it possible to use the `mq` like this: ``` const ColumnOne = styled.div` ${({ theme }) => ` ${mq({ 'paddingRight': [0, `${theme.spacer * 20}px`], 'grid-column': ['1 / 15', '1...

Bumps [codecov](https://github.com/codecov/codecov-node) from 2.3.1 to 3.7.1. Release notes Sourced from codecov's releases. v3.6.4 Fix for Cirrus CI v3.6.3 AWS Codebuild fixes + package updates v3.6.2 command line args sanitised v3.6.1...

dependencies

**Type of issue**: potential bug in type definition file **Current behavior**: ![image](https://user-images.githubusercontent.com/1215159/74211815-8c705e80-4c5f-11ea-9255-cc6af6e339d5.png) **Expected behavior**: No type errors **Solution that I've found**: In the type definition file, if you change the...

The following does **not** work: ``` const mq = facepaint({ _: '@media(min-width: 0px)', xs: '@media(min-width: 480px)', sm: '@media(min-width: 768px)', md: '@media(min-width: 992px)', lg: '@media(min-width: 1200px)', xl: '@media(min-width: 1600px)', }) const...

I'm using facepaint with emotion and I want to be able to pass props into a styled component. With emotion you would normally do this: const TextColumnContainer = styled.div(props =>...

Love the library so far, any suggestion on how to improve the readability here? **Define our breakpoints** ``` export const breakpoints = { xs: 480, sm: 576, md: 768, lg:...

I have pseudo-selector classes that only appear at my larger breakpoint. Currently it appears that I have to put every property within them inside an array: ```js mq({ '&>li:first-child': {...

help wanted
feature request