Importing individual components into other less files now requires scoping. This is to prevent issues with variable scope that cannot be resolved inside definitions.
Importing individual components into other less requires namespacing:
```less
/* Import a specific component */
& { @import 'src/definitions/elements/button'; }
```
Importing `semantic.less` still does not require this
Importing `semantic.less` still does not require any special syntax
@import 'src/semantic';
This is to prevent issues with variable scope that cannot be resolved inside definitions.
**Bugs**
- Fixed issue directly importing `semantic.less` caused by variable scoping in `.loadOverrides()`.