Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created June 26, 2024 13:31
Show Gist options
  • Save PaulieScanlon/77f4159fe659fc58605e484db5fa0c12 to your computer and use it in GitHub Desktop.
Save PaulieScanlon/77f4159fe659fc58605e484db5fa0c12 to your computer and use it in GitHub Desktop.
Example Linaria generated CSS Modules
/* src/components/some-component/SomeComponent.module.css */
.ButtonLink {
background: transparent;
border-radius: 3px;
border: 1px solid var(--accent-color);
color: var(--accent-color);
display: inline-block;
margin: 0.5rem 1rem;
padding: 0.5rem 0px;
transition: all 200ms ease-in-out 0s;
width: 11rem;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment