mirror of
https://github.com/janishutz/MusicPlayerV2.git
synced 2025-11-25 13:04:23 +00:00
14 lines
269 B
Vue
14 lines
269 B
Vue
<template>
|
|
<div class="player">
|
|
<div class="controls"></div>
|
|
<div class="song-info"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
.song-info {
|
|
background-color: var( --accent-background );
|
|
height: 80%;
|
|
width: 50%;
|
|
}
|
|
</style> |