Made a channel page

This commit is contained in:
Kasper Rynning-Tønnesen
2019-12-03 16:22:38 +01:00
parent 70dd1cbeb1
commit d495d77245
10 changed files with 277 additions and 53 deletions

View File

@@ -0,0 +1,35 @@
<template>
<div>
<div class="parallel-containers">
<Player class="player" />
<Playlist class="playlist" />
</div>
</div>
</template>
<script>
import store from "@/store";
import Player from "@/components/player/Player";
import Playlist from "@/components/playlist/Playlist";
export default {
components: {
Player,
Playlist
}
};
</script>
<style lang="scss" scoped>
.parallel-containers {
display: flex;
flex-direction: row;
& .player {
width: 100%;
}
& .playlist {
width: 40vw;
}
}
</style>