Create Reusable CSS with Mixins - not passing

The challenge is not passing. Even though the answer seems correct to me. Not passing the test
Your code should call the border-radius mixin using the @include keyword, setting it to 15px.

@mixin border-radius($radius) {
    -webkit-border-radius:$radius;
    -moz-border-radius:$radius;
    -ms-border-radius:$radius;
    border-radius:$radius;
  }
  
  #awesome {
    width: 150px;
    height: 150px;
    background-color: green;
     @include border-radius(15px)
  }

Tested in -
Firefox 52.9.0
Safari 11.1.2
Chrome 68.0.3440.106

Remember that each line within curly braces { } should end in a semi-colon ( ; ), otherwise the code isn’t valid.

Although not strictly necessary, you should also make all indentations in a group the same number of spaces.

1 Like