Question #169

Author: admin
tags: SCSS  
.some-block {
  color: green;
}

.some-block {
  font-size: 10px;
}
In which CSS will this SCSS code be compiled?
.some-block {
  color: green;
}

.some-block {
  font-size: 10px;
}
.some-block {
  color: green;
  font-size: 10px;
}
.some-block {
  font-size: 10px;
}
Rate the difficulty of the question:
easyhard