We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8346939 commit d38f956Copy full SHA for d38f956
src/App.vue
@@ -1,6 +1,13 @@
1
<template>
2
<div id="app">
3
-
+ <header>
4
+ <h1>My Music Player</h1>
5
+ </header>
6
+ <main>
7
+ <section class="player">
8
+ <h2 class="song-title"></h2>
9
+ </section>
10
+ </main>
11
</div>
12
</template>
13
@@ -13,5 +20,20 @@ export default {
20
</script>
14
21
15
22
<style>
16
23
+*{
24
+ margin:0;
25
+ padding:0;
26
+ box-sizing:border-box;
27
+}
28
+body{
29
+ font-family: sans-serif;
30
31
+header{
32
+ display:flex;
33
+ justify-content:center;
34
+ align-item:center;
35
+ padding: 15px;
36
+ background-color: #212121;
37
+ color:#fff;
38
17
39
</style>
0 commit comments