fix: Remove corrupted HTML in shop-mode logo section
Fixed duplicate and malformed HTML tags in logo upload section: - Removed duplicate <div x-show="logoColor"> opening tag (line 171-172) - Removed orphan ></span> closing tag (line 190-191) - Cleaned up color palette display section The corrupted lines were causing layout issues where the logo section wasn't properly closed before the vendor input fields. Verification: - project-mode.html: Already correct, div balance = 0 - shop-mode.html: Fixed, removed lines 171-172 and 190-191 - Docker build: Successful - Both files now have properly structured HTML
This commit is contained in:
@@ -168,8 +168,6 @@
|
|||||||
<i class="fas fa-trash"></i>
|
<i class="fas fa-trash"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div
|
|
||||||
x-show="logoColor"
|
|
||||||
<div x-show="logoColor" class="mt-3">
|
<div x-show="logoColor" class="mt-3">
|
||||||
<div class="flex items-center gap-2 mb-2">
|
<div class="flex items-center gap-2 mb-2">
|
||||||
<span class="text-xs font-semibold text-gray-700">Colore Brand (media palette):</span>
|
<span class="text-xs font-semibold text-gray-700">Colore Brand (media palette):</span>
|
||||||
@@ -187,8 +185,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
></span>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
|
||||||
|
|||||||
Reference in New Issue
Block a user