choo121600 commented on code in PR #57326:
URL: https://github.com/apache/airflow/pull/57326#discussion_r2469976810
##########
airflow-core/src/airflow/ui/src/layouts/Nav/Nav.tsx:
##########
@@ -148,7 +148,14 @@ export const Nav = () => {
<Flex alignItems="center" flexDir="column" width="100%">
<Box mb={3}>
<NavLink to="/">
- <AirflowPin height="35px" width="35px" />
+ <AirflowPin
+ height="35px"
+ width="35px"
+ _hover={{
+ transform: "rotate(360deg)",
+ transition: "transform 0.8s ease-in-out"
+ }}
Review Comment:
Thanks for the review! In Chakra UI 3, the `sx={{ '@media
(prefers-reduced-motion: no-preference)': … }}` is not supported, so I updated
it using `_motionSafe` instead.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]