You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.6 KiB

10 months ago
  1. <h2>NOTIFICATION BAR</h2>
  2. <nav class='relative w-full'>
  3. <% if alert.present? %>
  4. <div class="absolute inset-x-0 top-10">
  5. <div class="flex max-w-sm w-full bg-white shadow-md rounded-lg mx-auto">
  6. <div class="w-2 bg-red-600">
  7. </div>
  8. <div class="w-full flex justify-between items-start px-2 py-2">
  9. <div class="flex flex-col ml-2">
  10. <label class="text-gray-800">Alert</label>
  11. <p class="text-gray-500 "><%= alert %></p>
  12. </div>
  13. <a href="#">
  14. <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-gray-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
  15. <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
  16. </svg>
  17. </a>
  18. </div>
  19. </div>
  20. </div>
  21. <% end %>
  22. <% if notice.present? %>
  23. <div class="absolute inset-x-0 top-50">
  24. <div class="flex max-w-sm w-full bg-white shadow-md rounded-lg overflow-hidden mx-auto">
  25. <div class="w-2 bg-green-600">
  26. </div>
  27. <div class="w-full flex justify-between items-start px-2 py-2">
  28. <div class="flex flex-col ml-2">
  29. <label class="text-gray-800">Notice</label>
  30. <p class="text-gray-500 "><%= notice %></p>
  31. </div>
  32. <a href="#">
  33. <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-gray-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
  34. <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
  35. </svg>
  36. </a>
  37. </div>
  38. </div>
  39. </div>
  40. <% end %>
  41. </nav>