Moved flash overlay away from buttons in top nav
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
CI / system-test (push) Has been cancelled

This commit is contained in:
2026-05-31 01:40:37 +02:00
parent 92786161b4
commit ff9f8b7523
2 changed files with 48 additions and 48 deletions

View File

@@ -6,7 +6,7 @@
bar_color = type == "notice" ? "bg-green-500" : "bg-red-500"
%>
<div data-controller="flash" class="fixed top-5 right-5 z-50 max-w-sm w-full">
<div data-controller="flash" class="fixed top-20 right-5 z-50 max-w-sm w-full">
<!-- Das relative Attribut und overflow-hidden sind wichtig für den Balken -->
<div data-flash-target="notification"

View File

@@ -22,10 +22,10 @@
<% if @rooms.any? %>
<div class="bg-white border border-gray-200 rounded-xl shadow-sm overflow-hidden">
<!-- ========================================================================= -->
<!-- 1. HANDY-ANSICHT: KOMPAKTE CARDS MIT KLEINEN BUTTONS (Bis md:) -->
<!-- ========================================================================= -->
<div class="block md:hidden divide-y divide-gray-200 bg-white">
<!-- ========================================================================= -->
<!-- 1. HANDY-ANSICHT: KOMPAKTE CARDS MIT KLEINEN BUTTONS (Bis md:) -->
<!-- ========================================================================= -->
<div class="block md:hidden divide-y divide-gray-200 bg-white">
<% @rooms.each do |room| %>
<div class="p-3 hover:bg-gray-50/50 transition space-y-2">
@@ -70,7 +70,7 @@
</div>
<% end %>
</div>
</div>
<!-- ========================================================================= -->
<!-- 2. DESKTOP-ANSICHT: STICKY-RÄUME-TABELLE -->