Sha256: 00ab60d5193e77d1f6df6ae0938c5f909795b2a8879f1eff29250dedd8c3d14c

Contents?: true

Size: 923 Bytes

Versions: 93

Compression:

Stored size: 923 Bytes

Contents

# Welcome CSS
The gems serves as a wrapper for the basic styling of all the components that we use on our admin systems and internal applications.

## Installation
Add this line to your application's Gemfile:

```ruby
gem 'welcome_css', '~> 0.1'
```

And then execute:
```bash
$ bundle
```

## Usage
This gem provides a `welcome.css` stylesheet with the basic styling and all the components for our admin stylesheets.

To use it just import the stylesheet into your layout:

```ruby
# app/views/layouts/application.html.erb
<%= stylesheet_link_tag 'welcome', media: 'all', 'data-turbolinks-track': 'reload' %>
```

or if you want you can include it into your custom stylesheet:

```scss
// app/assets/stylesheets/application.scss

@import "welcome";

// The rest of your custom styles goes here.
```

## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

Version data entries

93 entries across 93 versions & 1 rubygems

Version Path
welcome_css-0.35 README.md
welcome_css-0.33 README.md
welcome_css-0.32 README.md
welcome_css-0.31 README.md
welcome_css-0.30 README.md
welcome_css-0.29 README.md
welcome_css-0.28 README.md
welcome_css-0.27 README.md
welcome_css-0.26 README.md
welcome_css-0.25 README.md
welcome_css-0.24 README.md
welcome_css-0.23 README.md
welcome_css-0.22 README.md
welcome_css-0.21 README.md
welcome_css-0.20 README.md
welcome_css-0.19 README.md
welcome_css-0.18 README.md
welcome_css-0.17 README.md
welcome_css-0.16 README.md
welcome_css-0.15 README.md