remove cap-first classes

+ add padding 1rem to context menu child items
This commit is contained in:
geoffrey45
2022-08-04 12:41:51 +03:00
parent 6df15fe77f
commit bf1f9feb10
9 changed files with 29 additions and 32 deletions
+3 -3
View File
@@ -21,9 +21,9 @@
<span v-else>MP3</span>
{{ track.bitrate }}
</div>
<div class="title ellip cap-first">{{ props.track.title }}</div>
<div class="title ellip">{{ props.track.title }}</div>
<div class="separator no-border"></div>
<div class="artists ellip cap-first" v-if="props.track.artists[0] !== ''">
<div class="artists ellip" v-if="props.track.artists[0] !== ''">
<span
v-for="artist in putCommas(props.track.artists)"
:key="artist"
@@ -40,8 +40,8 @@
<script setup lang="ts">
import { putCommas } from "../../composables/perks";
import { Track } from "../../interfaces";
import { paths } from "../../config";
import { Track } from "../../interfaces";
const imguri = paths.images.thumb;
const props = defineProps<{