0

My rails project utilizes Twitter Bootstrap for the main site's look and feel. In order to make kaminari fit in a bit better, I added the kaminari-bootstrap gem. So far, so good.

The problem is that the kaminari-bootstrap HTML breaks the pagination in active_admin.

The ideal thing would be to find a way to only enable kaminari-bootstrap for the main site, and not for active admin.

David N. Welton
  • 1,875
  • 18
  • 33

1 Answers1

0

try this may be it helpful, in your application.css remove your active_admin.css . then restart your server.

write in your active_admin.css.scss file -

@import "active_admin/mixins";
@import "active_admin/base";

and then try

Dipak Panchal
  • 5,996
  • 4
  • 32
  • 68