I cannot seem to find any documentation on the possibility (or if even possible) to do the following.
Below is the basic CSS/SASS namespaces declaration:
.example {
border: {
style: dashed;
width: 30px;
color: blue;
}
}
Is it possible to still have this format, but chain the top, right, bottom, left declaration?
How I would imagine this being written:
.example {
border: {
top, right, bottom, left: {
style: dashed;
width: 30px;
color: blue;
}
}
}
.example {
border: {
[top, right, bottom, left]: {
style: dashed;
width: 30px;
color: blue;
}
}
}