FlashMessage: center flash message
otherwise the #flash_message.center is useless
This commit is contained in:
parent
f8b83d6b7c
commit
9f1217c843
1 changed files with 8 additions and 7 deletions
|
@ -1,7 +1,8 @@
|
|||
#flash_message.center
|
||||
- if flash.notice
|
||||
- if flash.notice.present? || flash.alert.present?
|
||||
#flash_message.center
|
||||
- if flash.notice.present?
|
||||
.alert.alert-success
|
||||
= flash.notice
|
||||
- if flash.alert
|
||||
- if flash.alert.present?
|
||||
.alert.alert-danger
|
||||
= flash.alert.html_safe
|
||||
|
|
Loading…
Reference in a new issue