Files
swingmusic-extended/src/components/shared/PlayBtn.vue
T
geoffrey45 29124ce717 add child level context menu
- more typescript
2022-03-16 01:21:53 +03:00

24 lines
455 B
Vue

<template>
<div class="play-btn circular">
<div class="icon"></div>
</div>
</template>
<style lang="scss">
.play-btn {
width: 2rem;
height: 2rem;
background-color: $accent;
background-image: url("../../assets/icons/play.svg");
background-size: 1.25rem;
background-position: 60%;
background-repeat: no-repeat;
transition: all .25s;
&:hover {
background-color: rgb(58, 197, 58);
transform: scale(1.1);
}
}
</style>