add: fundamental of mini player ui

This commit is contained in:
Astrian Zheng 2025-07-09 16:51:11 +10:00
parent c57d7bc42d
commit a139d1278a
Signed by: Astrian
SSH Key Fingerprint: SHA256:rVnhx3DAKjujCwWE13aDl7uV6+9U1MvydLkNRXJrBiA

View File

@ -0,0 +1,11 @@
<script setup lang="ts"></script>
<template>
<div
class="h-9 w-52 bg-neutral-800/80 border border-[#ffffff39] rounded-full backdrop-blur-3xl flex items-center justify-between select-none">
<div class="flex items-center gap-2">
<div class="rounded-full w-9 h-9 bg-gray-600" />
<div class="text-white">Song title</div>
</div>
</div>
</template>