Files
MusicPlayer/frontend/src/components/player.vue
2023-10-19 13:00:08 +02:00

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>