I try to import css with css layer in React.
I test to import with layer in css file and after import with React :
@import 'theme.css' layer(theme);
@import 'utilities.css' layer(utilities);
@layer theme, utilities;
I try to define layer in each file and after import in react :
@layer theme{
my css
}
Isn't work. React see only the last layer. Other layers are ignored.