A simple, modern theme for ActiveAdmin.
Add the gem to your GemFile
gem 'simple-admin', '~> 0.1'
Update app/assets/stylesheets/active_admin.scss
Replace this:
@import "active_admin/mixins";
@import "active_admin/base";
With this:
@import "simple-admin";
Update app/assets/javascripts/active_admin.js
Replace this:
//= require active_admin/base
With this
//= require active_admin/base
//= require simple-admin
You can override any of the base colors by creating a $theme-colors
map in app/assets/stylesheets/active_admin.scss
with your color choices.
$theme-colors: (
'primary': #112240,
'secondary': #7f131a
);