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.
- Host: GitHub
- URL: https://github.com/thecodechef/devise-bulma-views
- Owner: thecodechef
- License: mit
- Created: 2019-12-11T06:34:03.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-06-09T23:17:41.000Z (about 5 years ago)
- Last Synced: 2025-05-15T06:08:01.070Z (about 1 year ago)
- Language: HTML
- Size: 7.81 KB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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