Please refer to stylelint-config-juwai for style–guides about CSS.
Name concatenation decreases code readability and makes codebase hard to search.
Bad:
.c-figures {
&__title {
text-align: right;
width: 120px;
}
}
Good:
.c-figures {
.c-figures__title {
text-align: right;
width: 120px;
&:hover {
color: red;
}
}
}
Encourage to use flexbox as long as layout and functionality consistent with other modern browsers.