variable-declaration.scss 480 B

123456789101112131415
  1. $var: /* comment 1 */ all /* comment 2 */ !default /* comment 3 */ ; /* comment 4 */
  2. @mixin text-color {
  3. /* comment 5 */
  4. /* comment 6 */ $text-color /* comment 7 */ : /* comment 8 */ red /* comment 9 */ !default /* comment 10 */ ; /* comment 11 */
  5. /* comment 12 */
  6. color: $text-color;
  7. }
  8. .error {
  9. /* comment 13 */
  10. /* comment 14 */ $text-color /* comment 15 */ : /* comment 16 */ green /* comment 17 */ !global /* comment 18 */ ; /* comment 19 */
  11. /* comment 20 */
  12. }