💄 (home) add margin to music section
This commit is contained in:
@@ -11,7 +11,12 @@
|
|||||||
<button v-show="timeState === 'started'" @click="pause">pause</button>
|
<button v-show="timeState === 'started'" @click="pause">pause</button>
|
||||||
<button v-show="timeState === 'started'" @click="clear">arrêter</button>
|
<button v-show="timeState === 'started'" @click="clear">arrêter</button>
|
||||||
</div>
|
</div>
|
||||||
<ZoneMusic :play="timeState === 'started'" @play="start" @pause="pause" />
|
<ZoneMusic
|
||||||
|
class="music"
|
||||||
|
:play="timeState === 'started'"
|
||||||
|
@play="start"
|
||||||
|
@pause="pause"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -76,4 +81,8 @@ button {
|
|||||||
.global-time {
|
.global-time {
|
||||||
font-size: calc(3em + 10vw);
|
font-size: calc(3em + 10vw);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.music {
|
||||||
|
margin: 1rem 0;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user