diff --git a/index.html b/index.html index 01925a2..f140807 100644 --- a/index.html +++ b/index.html @@ -25,6 +25,14 @@ padding: 1rem; } + .logo { + position: absolute; + top: 10px; /* Abstand vom oberen Rand */ + right: -70px; /* Abstand vom rechten Rand */ + width: auto; /* Breite des Logos */ + height: auto; /* Automatische Höhe, um das Seitenverhältnis beizubehalten */ + } + .search-container { display: flex; flex-direction: column; @@ -163,6 +171,9 @@

Einkauf Suche

+
@@ -482,6 +493,18 @@ checkbox.checked = masterCheckbox.checked; }); } + + + + + fetch('logo.svg') + .then(response => response.text()) + .then(svg => { + document.getElementById('logo').innerHTML = svg; + }) + .catch(error => console.error('Error loading SVG:', error)); + +