Skip to content
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

Using antd less variables in components #72

Open
nerdess opened this issue Nov 8, 2021 · 1 comment
Open

Using antd less variables in components #72

nerdess opened this issue Nov 8, 2021 · 1 comment

Comments

@nerdess
Copy link

nerdess commented Nov 8, 2021

I am customizing my ant design app using craco-antd which works very well :)

Now I'd like to use antd less variables inside the various .less files of my components. So that I can do stuff like e.g:

.card { padding-top: @padding-md; }

I am able to get it to work when I add

@import 'antd/dist/antd.less';

at the top of each .less file that uses an antd variable but that seems quite cubersome. Is there no way to add the variables globally?

@floatrx
Copy link

floatrx commented Dec 19, 2021

add the variables globally?

I prefer SASS\SCSS instead of LESS. I use craco-sass-resources-loader for that.

my config be like:

module.exports = {
  ...
    {
      // https://www.npmjs.com/package/craco-sass-resources-loader
      plugin: sassResourcesLoader,
      options: {
        resources: './src/styles/core.scss',
      },
    },
  ],
};

core.scss

@import "variables.app";
@import "mixins";
@import "helpers";
@import "animations";

Just replace sass with less & google

Try craco-plugin-style-resources-loader

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants