We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@import
@use
latest
Modificare l'importazione di parziali *.scss utilizzando la direttiva moderna @use.
*.scss
Documentazione
La direttiva @import è obsoleta e sarà presto deprecata.
No response
Nel caso di importazione di parziali con stesso nome, ma estensione diversa (esempio, design token) è necessario adottare un alias.
Esempio:
@use "../../node_modules/design-tokens-italia/css/_variables.css" as cssVars; @use "../../node_modules/design-tokens-italia/scss/_variables" as scssVars; // Uso delle variabili body { color: cssVars.var(--primary-color); // Variabile CSS margin: scssVars.$spacing; // Variabile SCSS }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Esiste già una discussione sul tema che ti interessa, o su un tema simile?
Versione della libreria
latest
Cosa
Modificare l'importazione di parziali
*.scss
utilizzando la direttiva moderna@use
.Documentazione
Perché
La direttiva
@import
è obsoleta e sarà presto deprecata.Contesto
No response
Altro
Nel caso di importazione di parziali con stesso nome, ma estensione diversa (esempio, design token) è necessario adottare un alias.
Esempio:
The text was updated successfully, but these errors were encountered: