fix(editor): Migrate from @import to @use for SCSS files to address deprecation warnings (#17858)

This commit is contained in:
Csaba Tuncsik
2025-08-04 15:01:16 +02:00
committed by GitHub
parent 566789caee
commit b7887bf899
146 changed files with 956 additions and 3065 deletions

View File

@@ -1,4 +1,4 @@
@import 'variables';
@import 'plugins';
@import 'global';
@import 'animations';
@use 'variables';
@use 'plugins';
@use 'global';
@use 'animations';

View File

@@ -1,3 +1,5 @@
@use '@n8n/design-system/css/mixins' as mixins;
/**
* Resizer
*/

View File

@@ -1,2 +1,2 @@
@import 'codemirror';
@import 'vueflow';
@use 'codemirror';
@use 'vueflow';