Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 298 Bytes

DEVELOPING.md

File metadata and controls

13 lines (10 loc) · 298 Bytes

Developing Solid

Deprecating Code

To deprecate SCSS, move the old classes to the very bottom of the SCSS file. Use this comment to indicate when the deprecated SCSS will be removed:

// @TODO remove in version X
// -------------------------
.deprecated-class {
    color: #000;
}