I’m really not sure what I’m doing incorrectly here. I’ve heard that this exercise might be bugged but perhaps I’m just being very silly and missing something very obvious. I’m pretty sure I’ve followed the instructions exactly though, placing the mixin at the very top of main.scss and adding @include transition(0.4s)
inside .notecard
.
I don’t seem to have any errors pop up, and no matter how much I click run it doesn’t seem to come up with the prompt to give me the code. So I’m completely stuck. I’ve even tried restarting the exercise a few times. Please tell me I’m just being silly!
@mixin transition($time){
transition: $time;
-webkit-transition: $time;
-moz-transition: $time;
-o-transition: $time;
}
// More Mixins Here
.notecard {
width: 300px;
height: 180px;
border: 1px solid black;
display: inline-block;
margin: 20px;
font-family: Roboto, sans-serif;
box-shadow: 1px 1px 2px 2px rgba(0,0,0,.2);
@include transform-style(preserve-3d);
@include transition(0.4s);
// More Selectors Here