From ab8e12cbcdbf0f3c24798b0abbfee830036b08ea Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Thu, 18 Sep 2025 09:25:50 +0200 Subject: [PATCH] =?UTF-8?q?=C3=84nderung:=20Anpassung=20der=20Positionieru?= =?UTF-8?q?ng=20von=20Haus-Ecken=20im=20Taxi-Spiel?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Änderungen: - Anpassung der CSS-Positionen für die Haus-Ecken in der Datei TaxiToolsView.vue, um eine bessere visuelle Darstellung zu gewährleisten. - Verschiebung der Ecken um 2 Pixel nach innen, um die Platzierung zu optimieren. Diese Anpassungen verbessern die Benutzeroberfläche und die visuelle Klarheit der Hausplatzierung im Taxi-Minispiel. --- frontend/src/views/admin/TaxiToolsView.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/views/admin/TaxiToolsView.vue b/frontend/src/views/admin/TaxiToolsView.vue index 8fcb706..2c0d06c 100644 --- a/frontend/src/views/admin/TaxiToolsView.vue +++ b/frontend/src/views/admin/TaxiToolsView.vue @@ -1449,10 +1449,10 @@ export default { .door-left { left: -1px; top: calc(50% - 2.5px); width: 2px; height: 5px; } .door-right { right: -1px; top: calc(50% - 2.5px); width: 2px; height: 5px; } .house-overlay { position: absolute; inset: 0; pointer-events: none; } -.house-square.corner-lo { position: absolute; top: 1px; left: 1px; } -.house-square.corner-ro { position: absolute; top: 1px; right: 1px; } -.house-square.corner-lu { position: absolute; bottom: 1px; left: 1px; } -.house-square.corner-ru { position: absolute; bottom: 1px; right: 1px; } +.house-square.corner-lo { position: absolute; top: 3px; left: 3px; } +.house-square.corner-ro { position: absolute; top: 3px; right: 3px; } +.house-square.corner-lu { position: absolute; bottom: 3px; left: 3px; } +.house-square.corner-ru { position: absolute; bottom: 3px; right: 3px; } .corner-chooser { margin-top: 8px; display: flex; gap: 6px; } .corner-btn { padding: 3px; border: 1px solid #ccc; border-radius: 4px; background: #f7f7f7; cursor: pointer; } .corner-btn:hover { background: #eee; }