# active_material **Repository Path**: luxing16/active_material ## Basic Information - **Project Name**: active_material - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-25 - **Last Updated**: 2021-03-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ActiveMaterial An ActiveAdmin skin based on Google's Material Design. 1. [Installation](#installation) 2. [Usage](#usage) 3. [Customization](#customization) 4. [Contributing](#contributing) ## Installation Add this line to your application's Gemfile: ```ruby gem "active_material", github: "vigetlabs/active_material" ``` And then execute: ```shell $ bundle ``` Or install it yourself as: ```shell $ gem install active_material ``` ## Usage In `app/assets/stylesheets/active_admin.css.scss`, replace: `@import "active_admin/base";` with `@import "active_material";` Additionally, ActiveMaterial comes with an optional JavaScript bundle that adds a few additional features. It should be included right after the active_admin base script. In app/assets/javascripts/active_admin.js, add: ``` //= require active_material ``` ## Customization Refer to the [Customization Guide](./docs/customization.md). ## Contributing 1. Fork it ( https://github.com/[my-github-username]/active_material/fork ) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am "Add some feature"`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create a new Pull Request ### Issue and PR reviews Another way you can help is by reviewing issues, trying to reproduce bugs, and providing feedback on PRs.