Files
openfoodnetwork/app/views/admin/shared/_flashes.html.haml
David Cook 0b4013dd11 Add dismiss button to flashes
And updating the secondary button style to ensure it's always white background
2023-12-06 10:12:17 +11:00

9 lines
325 B
Plaintext

#flashes
- if defined? flashes
- flashes.each do |type, msg|
.animate-show{"data-controller": "flash", "data-flash-auto-close-value": "true"}
.flash{type: "#{type}", class: "#{type}"}
.msg= msg
.actions
%button.secondary{"data-action": "click->flash#close"}= t('.dismiss')