Arctic_admin

screenshot of Arctic_admin
rails

Responsive Theme for ActiveAdmin

Overview:

ArcticAdminGem is a simple theme designed for ActiveAdmin, a popular framework for building administration interfaces in Rails applications.

Features:

  • Clean and minimalist design
  • Easy installation and integration with ActiveAdmin
  • Customizable primary color theme
  • Works with both Sprockets and webpacker/jsbundling-rails

For Sprockets users:

  1. Add the following line to your Gemfile:
gem 'arctic_admin'
  1. Run bundle install to install the gem.
  2. Add this line to the file config/initializers/active_admin.rb:
ActiveAdmin.application.load_paths.unshift(Dir["#{Gem.loaded_specs['arctic_admin'].full_gem_path}/app/admin"])
  1. For CSS, include the css file in your active_admin.css by removing the line *= require active_admin/base and adding:
@import 'arctic_admin/base';
  1. For Sass support, remove the line @import "active_admin/base". If you use SCSS, add this to your active_admin.scss file:
@import 'arctic_admin/base';

If you use the Sass indented syntax, add this to your active_admin.sass file:

@import 'arctic_admin/base'
  1. Restart your webserver if it was previously running.

For webpacker/jsbundling-rails or other JS-based asset solutions:

  1. Install the needed assets with npm or yarn:
npm install arctic_admin

or

yarn add arctic_admin
  1. For CSS, add the following line to your app/javascript/stylesheets/active_admin.scss:
@import 'arctic_admin/base';
  1. For JS, search for app/javascript/packs/active_admin.js in your Rails project and add the following lines:
import 'arctic_admin/base';
import 'arctic_admin/customizations';

Summary:

ArcticAdminGem is a simple theme designed for ActiveAdmin with a clean and minimalist design. It provides easy installation and integration with both Sprockets and webpacker/jsbundling-rails. The theme is customizable, allowing users to change the primary color. It also provides detailed installation instructions for different asset solutions.

rails
Ruby on Rails

Ruby on Rails, often referred to as Rails, is an open-source web application framework written in Ruby. Known for its convention over configuration and don't repeat yourself (DRY) principles, Rails simplifies and accelerates the development of database-backed web applications.

template
Templates & Themes

A template or theme refers to a pre-designed layout or structure that provides a basic framework for building a specific type of application or website. It typically includes good design, placeholder content and functional features, allowing developers to customize and fill in the details according to their specific needs.

material-design
Material Design

Material Design is a design system developed by Google that provides a set of guidelines, components, and tools for creating visually appealing and functional user interfaces. Material Design is designed to be flexible and customizable, making it a great choice for a wide range of applications and use cases.