feat: Mittelmodus – Kartenanzeige, Drag&Drop-Swap und Prüfung

This commit is contained in:
2026-02-10 15:15:25 +01:00
parent cc1058a3d1
commit 2e3c937b99
3 changed files with 187 additions and 10 deletions

View File

@@ -364,3 +364,34 @@ h1 {
display: none;
margin-top: 25px;
}
#trainingMittel {
display: flex !important;
gap: 20px;
align-items: flex-start;
}
.spalte-links,
.spalte-rechts {
display: flex;
flex: 1;
flex-direction: column;
gap: 12px;
min-height: 300px;
border: 1px dashed #ccc;
padding: 0;
align-items: center;
}
.drop-zone, .zieh-karte {
padding: 10px;
margin: 10px 0;
background: #fff;
border: 2px solid #666;
border-radius: 8px;
}
.zieh-karte {
cursor: grab;
}