reactjs / react.dev

The React documentation website
https://react.dev/
Creative Commons Attribution 4.0 International
10.86k stars 7.45k forks source link

[Suggestion]: Is it possible to make the logo in the middle of 'https://react.dev/' rotate? #6937

Closed yumi-kim-0827 closed 2 weeks ago

yumi-kim-0827 commented 3 weeks ago

Summary

If you visit 'https://react.dev/', you'll see the logo right in the middle. It looks like there's a CSS animation property with transition: all ... I think it would be cool to utilize this to animate the logo. If it's okay, I'd like to contribute. I'm so nervous because it's my first time contributing.

Page

https://react.dev/

Details

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
rickhanlonii commented 2 weeks ago

It's possible but let's not.