-
Notifications
You must be signed in to change notification settings - Fork 0
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
Layouts 📐 #14
Comments
Got the panel (todo: rename Admin into Panel) to toggle open and closed with a dynamic Now I need to animate the opening and closing of the panel. div {
border: 1px solid #eee;
}
div > ul {
visibility: hidden;
opacity: 0;
transition: visibility 0s, opacity 0.5s linear;
}
div:hover > ul {
visibility: visible;
opacity: 1;
} <div>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</div> A better animation would be to slide from the right. Two solutions:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Style admin panel with this
The text was updated successfully, but these errors were encountered: