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
@@ -19,7 +19,7 @@
<span v-else-if="album.is_single">Single</span>
<span v-else>Album</span>
</div>
<div class="title ellip cap-first">
<div class="title ellip">
{{ album.title }}
</div>
</div>
@@ -41,15 +41,15 @@
<script setup lang="ts">
import useVisibility from "@/composables/useVisibility";
import { paths } from "@/config";
import useNavStore from "@/stores/nav";
import useAlbumStore from "@/stores/pages/album";
import { ref } from "vue";
import { getButtonColor, isLight } from "../../composables/colors/album";
import { playSources } from "../../composables/enums";
import { formatSeconds } from "../../composables/perks";
import { paths } from "@/config";
import { AlbumInfo } from "../../interfaces";
import PlayBtnRect from "../shared/PlayBtnRect.vue";
import { getButtonColor, isLight } from "../../composables/colors/album";
const props = defineProps<{
album: AlbumInfo;