main
1// SASS variable overrides must be declared before loading up Active Admin's styles.
2//
3// To view the variables that Active Admin provides, take a look at
4// `app/assets/stylesheets/active_admin/mixins/_variables.css.scss` in the
5// Active Admin source.
6//
7// For example, to change the sidebar width:
8// $sidebar-width: 242px;
9
10// Active Admin's got SASS!
11@import "active_admin/mixins";
12@import "active_admin/base";
13
14// Overriding any non-variable SASS must be done after the fact.
15// For example, to change the default status-tag color:
16//
17// body.active_admin {
18// .status_tag { background: #6090DB; }
19// }
20//
21// Notice that Active Admin CSS rules are nested within a
22// 'body.active_admin' selector to prevent conflicts with
23// other pages in the app. It is best to wrap your changes in a
24// namespace so they are properly recognized. You have options
25// if you e.g. want different styles for different namespaces:
26//
27// .active_admin applies to any Active Admin namespace
28// .admin_namespace applies to the admin namespace (eg: /admin)
29// .other_namespace applies to a custom namespace named other (eg: /other)