Grid with Toggleable Sidebar Issue
Well, copilot can't figure it out so maybe you guys can.
I'm trying to create a sidebar that is toggleable, which seems like it should be pretty simple, but I get this weird behavior where the main takes a few seconds to readjust it's width.
Here's the css
2 Replies
you can transition the grid-template-columns like this
https://codepen.io/MarkBoots/pen/PoLgdZa
This is super clean for the animation. I wound up needing
overflow-x: hidden. Now it works like a champ.
Thank you!