mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
16 lines
318 B
Vue
16 lines
318 B
Vue
<template>
|
|
<div class="bars" data-testid="soundbars">
|
|
<img alt="Sound bars" height="13" src="@/../img/bars.gif">
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.bars {
|
|
width: 28px;
|
|
height: 13px;
|
|
position: relative;
|
|
display: inline-block;
|
|
backface-visibility: hidden;
|
|
margin-bottom: 5px;
|
|
}
|
|
</style>
|