From f9c0cc15f0c53030a5396e934eae48cdcf2e3ba5 Mon Sep 17 00:00:00 2001 From: wisecolt Date: Tue, 3 Feb 2026 18:40:16 +0300 Subject: [PATCH] =?UTF-8?q?refactor(ui):=20mini=20player=20kapak=20(video?= =?UTF-8?q?=20play=20alan=C4=B1)=20d=C3=BCzenlemeleri?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/components/MiniPlayer.svelte | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/client/src/components/MiniPlayer.svelte b/client/src/components/MiniPlayer.svelte index 98ee39c..8e2c527 100644 --- a/client/src/components/MiniPlayer.svelte +++ b/client/src/components/MiniPlayer.svelte @@ -157,23 +157,23 @@ } .mini-cover { - margin: 14px auto 12px; - width: 160px; - height: 160px; - border-radius: 20px; + margin: 0 0 12px; + width: 100%; + aspect-ratio: 1 / 1; + border-radius: 22px; overflow: hidden; background: rgba(255, 255, 255, 0.06); box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35); border: 1px solid rgba(255, 255, 255, 0.12); - display: grid; - place-items: center; - transform: translateY(-6px); + display: block; } + .mini-cover video, .mini-cover img { width: 100%; height: 100%; object-fit: cover; + display: block; } .mini-cover video {