Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Robert Brown
12,269 PointsFinally, use a transform mixin to give .main-logo a -25deg rotation on :hover. Part 5 of compass challenge.
So i tried different versions of @include transform and don't get the mixin needed looked on vid and Compass transform reference but no luck. keeping getting
"Bummer! Make sure you're including the correct mixin inside the .main-logo:hover rule."
This is what I have:
body { $experimental-support-for-svg: true; @include background(linear-gradient(#3d69b5, #1a335e));
.main-logo { @include single-transition(transform, 0.6s); }
.main-logo:hover { @include transform(rotate, -25deg); } }
Help!
2 Answers

Mason Embry
Full Stack JavaScript Techdegree Graduate 31,420 PointsYeah, that looks right to me. Sorry I didn't get around to answering quicker. Good job finding the solution!
Mason

Robert Brown
12,269 PointsNo problem thanks for even looking. It nice to know people are out there.

Bruno SANTOS
6,518 PointsThanks, it helped me too.
Robert Brown
12,269 PointsRobert Brown
12,269 PointsWith some rest found answer on:
http://compass-style.org/reference/compass/css3/transform/
answer:
@include rotate(-25deg);
way over thought it.