All Projects → MunGell → React Postcss

MunGell / React Postcss

Simple style tag for React

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Postcss

Css In React
🍭 CSS in React - Learn the best CSS in JS frameworks by example
Stars: ✭ 101 (+1022.22%)
Mutual labels:  postcss, css-in-js
Postjss
Use the power of PostCSS in compiling with JSS
Stars: ✭ 40 (+344.44%)
Mutual labels:  postcss, css-in-js
postcss-styled
PostCSS syntax for parsing styled components
Stars: ✭ 53 (+488.89%)
Mutual labels:  postcss, css-in-js
Stylelint
A mighty, modern linter that helps you avoid errors and enforce conventions in your styles.
Stars: ✭ 9,350 (+103788.89%)
Mutual labels:  postcss, css-in-js
postcss-jsx
PostCSS syntax for parsing CSS in JS literals
Stars: ✭ 73 (+711.11%)
Mutual labels:  postcss, css-in-js
styled-jsx-plugin-postcss
Plugin to add PostCSS support to styled-jsx.
Stars: ✭ 86 (+855.56%)
Mutual labels:  postcss, css-in-js
Vscode Stylelint
A Visual Studio Code extension to lint CSS/SCSS/Less with stylelint
Stars: ✭ 260 (+2788.89%)
Mutual labels:  postcss, css-in-js
Styled Jsx
Full CSS support for JSX without compromises
Stars: ✭ 6,768 (+75100%)
Mutual labels:  css-in-js
Postcss Start To End
PostCSS plugin that lets you control your layout (LTR or RTL) through logical rather than physical rules
Stars: ✭ 18 (+100%)
Mutual labels:  postcss
Purgecss
Remove unused CSS
Stars: ✭ 6,566 (+72855.56%)
Mutual labels:  postcss
Postcss
Transforming styles with JS plugins
Stars: ✭ 25,612 (+284477.78%)
Mutual labels:  postcss
Styled Tools
Useful interpolated functions for CSS-in-JS
Stars: ✭ 761 (+8355.56%)
Mutual labels:  css-in-js
Postcss Variables Loader
Share variables between CSS and JS with Webpack + HMR
Stars: ✭ 18 (+100%)
Mutual labels:  postcss
Gulp Postcss
Pipe CSS through PostCSS processors with a single parse
Stars: ✭ 749 (+8222.22%)
Mutual labels:  postcss
Concise.css
A CSS framework that's lightweight and easy-to-use. Give up the bloat. Stop tripping over your classes. Be Concise.
Stars: ✭ 941 (+10355.56%)
Mutual labels:  postcss
Turretcss
Turret is a styles and browser behaviour normalisation framework for rapid development of responsive and accessible websites.
Stars: ✭ 729 (+8000%)
Mutual labels:  postcss
Polished
A lightweight toolset for writing styles in JavaScript ✨
Stars: ✭ 7,074 (+78500%)
Mutual labels:  css-in-js
Postcss Position
PostCSS plugin that adds shorthand declarations for position attributes
Stars: ✭ 26 (+188.89%)
Mutual labels:  postcss
Forex
Fortran User Defined Exceptions Handler
Stars: ✭ 17 (+88.89%)
Mutual labels:  experimental
Universal React Base
[OUTDATED] Super basic example to get you started with Universal (😦) React/Redux (+ API requests). Lightweight and straightforward.
Stars: ✭ 6 (-33.33%)
Mutual labels:  postcss

react-postcss

Build Status

This repository contains proof-of-concept simple style tag component for React.

How to use

style: function() {
    return `
        .Container {
            &__button {
                color: red;
                background-color: black;
            }
        }
    `;
},

render: function () {
    return (
        <div className="Container">
            <Style plugins={[postcssNested, autoprefixer]}>{this.style()}</Style>
            <button className="Container__button">
                Button
            </button>
        </div>
    )
}

PostCSS

This component uses PostCSS. You can use any plugins from postcss.parts website.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].