![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
chameleon-sass
Advanced tools
Chameleon is a Sass layout framework for responsive web sites and applications.
At the heart of Chameleon is the ability to "turn on" classes at different screen sizes:
<div class="padded padded-small-on-mobile"></div>
Out of the box Chameleon adds 0Kb to your project. Generate only the classes that you need for your project.
@include classes('padded', $on: 'base');
@include classes('padded-right', $on: 'base mobile');
.padded {
padding: 20px;
}
.padded-right {
padding-right: 20px;
}
@media screen and (max-width: 479px) {
.padded-right-on-mobile {
padding-right: 20px;
}
}
Chameleon selectors be used anywhere in your stylesheet - even if they weren't generated into classes.
.myModule {
@extend %padded;
@extend %padded-small-on-mobile;
@extend %padded-on-tablet;
border: 3px dashed red;
}
You can also create selectors of your own using Chameleon's core mixins.
@include placeholder('myHelper') {
color: red;
}
@include classes('myHelper', $on: 'base mobile tablet-up');
Multi-element modifiers provide a powerful, concise and expressive way to compose modules.
<div class="row cols-spaced cols-to-rows-on-mobile">
<div class="col-1-3"></div>
<div class="col-1-3"></div>
<div class="col-1-3"></div>
</div>
FAQs
A styleless Sass framework for responsive user interfaces
We found that chameleon-sass demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.