Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sergeypedan/activeadmin-tiny-improvements
A collection of small visual improvements to classic ActiveAdmin theme
https://github.com/sergeypedan/activeadmin-tiny-improvements
activeadmin css gem rails ruby
Last synced: about 1 month ago
JSON representation
A collection of small visual improvements to classic ActiveAdmin theme
- Host: GitHub
- URL: https://github.com/sergeypedan/activeadmin-tiny-improvements
- Owner: sergeypedan
- License: mit
- Created: 2022-06-12T07:30:40.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-03-09T01:22:51.000Z (almost 2 years ago)
- Last Synced: 2024-10-31T13:47:05.739Z (about 2 months ago)
- Topics: activeadmin, css, gem, rails, ruby
- Language: Sass
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Tiny improvements to the default theme of ActiveAdmin
[![Gem Version](https://badge.fury.io/rb/activeadmin_tiny_improvements.svg)](https://badge.fury.io/rb/activeadmin_tiny_improvements)
## What it does
It’s a collection of [CSS files](https://github.com/sergeypedan/activeadmin-tiny-improvements/tree/master/app/assets/stylesheets/activeadmin-tiny-improvements) with rules that make small improvements to the default theme, like increasing font size in textareas.
## Installation
Add this line to your application's Gemfile:
```ruby
gem "activeadmin_tiny_improvements"
```Import our Sass file “activeadmin-tiny-improvements” in your CSS entrypoint that compiles ActiveAdmin CSS files:
```sass
// app/assets/stylesheets/active_admin.sass// Your regular ActiveAdmin files
@import "active_admin/mixins"
@import "active_admin/base"
@import ...// This gem’s files
@import "activeadmin-tiny-improvements"
```## ActiveAdmin version compatibility
The current version of ActiveAdmin is 2.13.1. Our styles are and will be targeted on the latest version.