Nesting SASS

Move a block inside another block and indent it

Input

.hero {
  background-color: pink;
}

header {
  border-bottom: 2px solid #26BBB3;
}

Output

.hero {
  background-color: pink;

  header {
    border-bottom: 2px solid #26BBB3;
  }
}