Typical Styling Conventions
It's not descriptive
Potential bad abstractions
Naming things is hard already
Need to open template + sass files side by side for all information
☝️ (I'm lazy)
Tony
Front End Developer @ TC
I see things are broken into appropriate sections, but I have no idea what it looks like
Much Better: Functional/Utility CSS
Example
.flex {
display: flex;
}
.justify-between {
justify-content: space-between;
}
.bg-black {
background-color: #22292f;
}