The only thing that bothers me, is when i use nested selectors like:
Code: Select all
.something {
width: 123px;
col[cursor]
.something-else {
color: red;
}
}
Code: Select all
.something {
width: 123px;
color[cursor]
.something-else {
color: red;
}
}
Code: Select all
.something {
width: 123px;
color: [cursor]
.something-else {
color: red;
}
}
Can you please fix this in next (minor) update?
Thank you.