Skip to content

ryfylke-react-as/scoped-css-react

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

scoped-css-react

A styled-like styling solution that lets you write @scope'd css.

Simple example

import { createScoped } from "scoped-css-react"; const Container = createScoped("main")`  :scope {  background: black;  }   span {  color: red;  } `; export default function App() { return ( <Container> <h1> <span>Hey</span> there! </h1> </Container> ); } /** <div>  <style>  @scope {  :scope {  background: black;  }    span {  color: red;  }  }  </style>  <h1>  <span>Hey</span> there!  </h1> </div>  **/

Use with other components

Your component needs to take a children prop

const StyledButton = createScope(Button)`  :scope {  color: red;  }   svg {  --size: 0.875rem;  } `;

Props

const StyledButton = createScope(Button)`  :scope {  color: ${(props) =>  props.variant === "ghost" ? "black" : "white"};  }   svg {  --size: 0.875rem;  } `;

About

Created components in styled syntax with @scope'd css

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published