An open API service indexing awesome lists of open source software.

https://github.com/thecodechef/devise-bulma-views

Bulma views for Devise with I18n support.
https://github.com/thecodechef/devise-bulma-views

Last synced: 12 months ago
JSON representation

Bulma views for Devise with I18n support.

Awesome Lists containing this project

README

          

# Devise Bulma Views

Here are some of the highlights:

- Devise views with Bulma CSS
- Responsive layout
- I18n support

## Installation

Make sure Bulma is installed:

### Gemfile
```ruby
gem 'bulma-rails', '~> 0.8.0'
```

#### OR

### CDN
```html

```

Add this line to your application's Gemfile:

```ruby
gem 'devise-bulma-views', '~> 0.1.0'
```

And then execute:

$ bundle install

## I18n

Install [devise-i18n](https://github.com/tigrish/devise-i18n) for other locales. Make sure to insert `gem 'devise-i18n'` before `gem 'devise-bulma-views'`

## Customizing Views

The `devise:views:bulma_templates` generator will copy all views to your application, so you can modify the files as you wish:

```sh
$ rails g devise:views:bulma_templates
```

## Contributing

1. Fork it ( https://github.com/thecodechef/devise-bulma-views/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