Tell us what’s happening:
This code fails. As far as I can tell everything is ok. Nothing missing but still I get the error :
// running tests
Your mixin should have an @else statement to set the border to none.
// tests completed
Is it a bug or something?
Thanks for looking into it.
Your code so far
<style type='text/sass'>
  @mixin border-stroke($val){
    @if $val == light {
      border: 1px solid black;
      }
      @else if $val == medium {
      border: 3px solid black;
      }
      @else if $val == heavy {
      border: 6px solid black;
      }
      @else $val == none {
      border: none;
      }
  }
  
  
  #box {
    width: 150px;
    height: 150px;
    background-color: red;
    @include border-stroke(medium);
  }  
</style>
<div id="box"></div>
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.2 Safari/605.1.15.
Link to the challenge:
https://learn.freecodecamp.org/front-end-libraries/sass/use-if-and-else-to-add-logic-to-your-styles
