-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
New issue
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
I cant import components.less from bower #218
I cant import components.less from bower #218
Comments
I had that dependency giving me problems as well. Actually, being a very tiny style, i believe the import can be skipped by adding .react-draggable, .react-draggable-dragging {
user-select: none;
}
.react-draggable {
position: relative;
} to the material-ui's style. @hai-cea what about removing that |
This also breaks compiling the material-ui less from another npm package. |
Actually, disregard that. .pipe(less({
paths: [ path.join(__dirname, 'node_modules', 'react-draggable2', 'lib') ],
plugins: [autoprefix, cleancss]
}) |
I'm using bower for front end dependencies, when i import the components.less i can't compile the less because this dependency in slider.less
@import (inline) "../../../node_modules/react-draggable2/lib/styles.css";
The question is, if the react-draggable2 root can be put in a variable, so i can override it
Thanks!
The text was updated successfully, but these errors were encountered: