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
The following:
'.lumi-calc-content': { children: { '.ant-form-item': { children: { '.lumi-input-container': { children: {}, attributes: { 'border-color': '#EBEBEB', 'border-width': '2px' } } } } } }
gets parsed into the following:
.lumi-calc-content { .ant-form-item { .lumi-input-container { border-color: rgba(211, 55, 55, 1); border-width: 2px; } } }
Shouldn't the children be following one another as the following?: .lumi-calc-content .ant-form-item .lumi-input-container
.lumi-calc-content .ant-form-item .lumi-input-container
The text was updated successfully, but these errors were encountered:
Yes! This looks like LESS string, not CSS =)
Sorry, something went wrong.
No branches or pull requests
The following:
'.lumi-calc-content': { children: { '.ant-form-item': { children: { '.lumi-input-container': { children: {}, attributes: { 'border-color': '#EBEBEB', 'border-width': '2px' } } } } } }
gets parsed into the following:
.lumi-calc-content { .ant-form-item { .lumi-input-container { border-color: rgba(211, 55, 55, 1); border-width: 2px; } } }
Shouldn't the children be following one another as the following?:
.lumi-calc-content .ant-form-item .lumi-input-container
The text was updated successfully, but these errors were encountered: