-
Notifications
You must be signed in to change notification settings - Fork 345
Refactor transitions for consistency across styles #2025
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
📦 Docs artifacts are ready: https://github.com/elixir-lang/ex_doc/actions/runs/12844284546/artifacts/2450954348 |
…moother interactions
@hichemfantar if you mouse over the root items in the sidebar, there is a small jiggle now. Is that intentional? I am afraid part of it is because we are using |
I fixed the bug you talked about and introduces multiple presets |
assets/css/custom-props/common.css
Outdated
.transition-all { | ||
transition: var(--transition-all); | ||
} | ||
|
||
.transition-colors { | ||
transition: var(--transition-colors); | ||
} | ||
|
||
.transition-opacity { | ||
transition: var(--transition-opacity); | ||
} | ||
|
||
.transition-shadow { | ||
transition: var(--transition-shadow); | ||
} | ||
|
||
.transition-transform { | ||
transition: var(--transition-transform); | ||
} | ||
|
||
.transition-none { | ||
transition-property: none; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need the classes? We don't use them anywhere for now, right? So we can skip them and add them later if necessary. :)
💚 💙 💜 💛 ❤️ |
Standardize transition properties by introducing a common variable, ensuring uniformity in animation effects throughout the styles.
Screen.Recording.2025-01-17.at.6.58.29.PM.mp4
Screen.Recording.2025-01-17.at.6.35.41.PM.mp4