CSSJSON icon indicating copy to clipboard operation
CSSJSON copied to clipboard

Children don't get written to CSS properly

Open DogAndHerDude opened this issue 8 years ago • 1 comments

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

DogAndHerDude avatar Jan 19 '17 13:01 DogAndHerDude

Yes! This looks like LESS string, not CSS =)

saike avatar Jan 26 '17 20:01 saike