ayann / active_admin_flat_skin

Active Admin Flat theme design.
http://ayann.github.io/active_admin_flat_skin
MIT License
91 stars 62 forks source link

Sidebar is not scrollable #9

Open bakku opened 7 years ago

bakku commented 7 years ago

Hi! We have more models than fit to the sidebar of the interface. But the sidebar is not scrollable so we can't reach these entries of the navigation. Any ideas how to solve this?

Martin288 commented 6 years ago

@bakku I added the below lines of codes and solved the problem.

#filters_sidebar_section {
  max-height: 80%;
  overflow-y: scroll;
}

But unfortunately, it still appears annoying scrollbars:

image

Martin288 commented 6 years ago

@bakku I also added overflow-x: hidden; to hide the scrollbar, but I think it is dangerous.