PLEASE HELP ! Learn CSS Variables by Building a City Skyline 41

.bb1a {
  width: 70%;
  height: 10%;
  background-color: var(--building-color1);
  background: linear-gradient(
      var(--building-color1),
      var(--window-color1)
    );
}
.bb1-window{
  height: 10%; 
  background: linear-gradient(
      var(--building-color1),
      var(--window-color1)
    );
}

You should move the height property and value from .bb1a to .bb1-window .
i did it but i still can’t pass this lesson. I tried to reset the lesson but it’s not working

Please post a link to the step. Thanks

Learn CSS Variables by Building a City Skyline: Step 41 | freeCodeCamp.org

i just solved thos problem.
It turns out that I needed to remove the properties from the BB1A class. Thank you for your attention:)