Fix: Rebuild broken modal HTML structure - add missing closing tags and attributes

This commit is contained in:
Local Server
2026-01-14 07:54:36 -06:00
parent 96f7d7920a
commit 3af8d630f1

View File

@@ -273,6 +273,7 @@
overflow: hidden;
padding: 0;
"
>
<div
style="
position: absolute;
@@ -292,6 +293,7 @@
>
<button
onclick="closeProjectModal()"
style="
position: absolute;
top: 20px;
right: 20px;
@@ -308,15 +310,22 @@
z-index: 10;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
transition: all 0.2s;
"
onmouseover="this.style.transform='scale(1.1)'; this.style.background='#f8f9fa';"
onmouseout="this.style.transform='scale(1)'; this.style.background='white';"
>
<i class="bi bi-x-lg"></i>
</button>
<div
id="modalContent"
style="
overflow-y: auto;
overflow-x: hidden;
flex: 1;
scroll-behavior: smooth;
"
></div>
</div>
</div>
<script src="/assets/js/page-transitions.js?v=1766709739"></script>
<script src="/assets/js/back-button-control.js?v=1766723554"></script>