Create Reusable CSS with Mixins includes error

Tell us what’s happening:

Your code so far


<style type='text/sass'>
  $radius:15px;
  @mixin border-radius($radius)  {
    -moz-border-radius:$radius;
    -webkit-border-radius:$radius;
    -ms-border-radius:$radius;
    border-radius:$radius;   
}
  
  #awesome {
    width: 150px;
    height: 150px;
    background-color: green;
   @include border-radius($radius: 15px);
  }
</style>


<div id="awesome"></div>
  

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/front-end-libraries/sass/create-reusable-css-with-mixins

You have already declared the variable $radius and gave it a value of 15px. So you don’t need to assign in when calling the mixin.
Either just pass in the variable as it is, or pass in 15px.

Thank you i have correct the error and it workout fine