Merge pull request #255 from sgmap/fix_centered_flash_message
FlashMessage: center flash message
This commit is contained in:
commit
d447148fca
1 changed files with 8 additions and 7 deletions
|
@ -1,7 +1,8 @@
|
||||||
#flash_message.center
|
- if flash.notice.present? || flash.alert.present?
|
||||||
- if flash.notice
|
#flash_message.center
|
||||||
|
- if flash.notice.present?
|
||||||
.alert.alert-success
|
.alert.alert-success
|
||||||
= flash.notice
|
= flash.notice
|
||||||
- if flash.alert
|
- if flash.alert.present?
|
||||||
.alert.alert-danger
|
.alert.alert-danger
|
||||||
= flash.alert.html_safe
|
= flash.alert.html_safe
|
||||||
|
|
Loading…
Reference in a new issue