diff --git a/src/dashboard/example/components/ScoreboardPanel.vue b/src/dashboard/example/components/ScoreboardPanel.vue index c9fa4d8..95782e1 100644 --- a/src/dashboard/example/components/ScoreboardPanel.vue +++ b/src/dashboard/example/components/ScoreboardPanel.vue @@ -1073,18 +1073,25 @@ watch( } .scoreboard-preview__image-wrap { + position: relative; width: min(100%, 320px); aspect-ratio: 4 / 4; - overflow: hidden; + overflow: visible; background: #1D1D1D; + contain: layout; } .scoreboard-preview__image { + position: absolute; + inset: 0; display: block; width: 100%; height: 100%; - object-fit: cover; + object-fit: contain; object-position: center; + transform: scale(1.5); + transform-origin: center center; + pointer-events: none; } .scoreboard-preview__empty { diff --git a/src/shared/character-images/street-fighter-6/chun-li.png b/src/shared/character-images/street-fighter-6/chun-li.png new file mode 100644 index 0000000..54300a6 Binary files /dev/null and b/src/shared/character-images/street-fighter-6/chun-li.png differ diff --git a/src/shared/character-images/street-fighter-6/juri.png b/src/shared/character-images/street-fighter-6/juri.png new file mode 100644 index 0000000..876d610 Binary files /dev/null and b/src/shared/character-images/street-fighter-6/juri.png differ