mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
remove @vueuse/motion
+ remove unused data folder
This commit is contained in:
@@ -12,12 +12,11 @@
|
||||
<img
|
||||
:src="imguri + album.image"
|
||||
alt=""
|
||||
v-motion-slide-from-left
|
||||
class="rounded shadow-lg"
|
||||
/>
|
||||
</div>
|
||||
<div class="info" :class="{ nocontrast: isLight() }">
|
||||
<div class="top" v-motion-slide-from-top>
|
||||
<div class="top">
|
||||
<div class="h">
|
||||
<span v-if="album.is_soundtrack">Soundtrack</span>
|
||||
<span v-else-if="album.is_compilation">Compilation</span>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
:key="menu.name"
|
||||
:to="{ name: menu.route_name, params: menu.params }"
|
||||
>
|
||||
<div class="nav-button" id="home-button" v-motion-slide-from-left-100>
|
||||
<div class="nav-button" id="home-button">
|
||||
<div class="in">
|
||||
<component :is="menu.icon"></component>
|
||||
<span>{{ menu.name }}</span>
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<template>
|
||||
<div id="logo-container"
|
||||
v-motion-slide-from-top
|
||||
>
|
||||
<router-link :to="{ name: 'Home' }">
|
||||
<div id="logo" class="rounded"></div
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
<div class="type">Playlist</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="last-updated" v-motion-slide-from-right>
|
||||
<div class="last-updated">
|
||||
<span class="status"
|
||||
>Last updated {{ props.info.lastUpdated }}  |  </span
|
||||
>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div v-show="name == s.currentTab" v-motion-slide-visible-top>
|
||||
<div v-show="name == s.currentTab">
|
||||
<slot />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -81,8 +81,6 @@ watch(
|
||||
.topnav {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr min-content max-content;
|
||||
// border-bottom: 1px solid $gray3;
|
||||
// padding-bottom: $small;
|
||||
|
||||
.left {
|
||||
display: grid;
|
||||
@@ -94,7 +92,6 @@ watch(
|
||||
.title {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
margin-top: $smaller;
|
||||
display: flex;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="title albumnavtitle" v-motion-slide-from-left-100>
|
||||
<div class="title albumnavtitle">
|
||||
<PlayBtn :source="things.source" :store="things.store" />
|
||||
<div class="ellip">
|
||||
{{ things.text }}
|
||||
@@ -44,14 +44,8 @@ const things = computed(() => {
|
||||
|
||||
<style lang="scss">
|
||||
.albumnavtitle {
|
||||
padding-left: 3rem;
|
||||
|
||||
.play-btn {
|
||||
position: absolute;
|
||||
left: $smaller;
|
||||
top: -$smaller;
|
||||
height: 2.25rem;
|
||||
aspect-ratio: 1;
|
||||
}
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: $small;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div id="folder-nav-title">
|
||||
<div class="folder" v-motion-slide-from-left-100>
|
||||
<div class="folder">
|
||||
<div class="fname">
|
||||
<div class="icon image"></div>
|
||||
<div class="paths">
|
||||
@@ -9,7 +9,6 @@
|
||||
v-for="path in subPaths"
|
||||
:key="path.path"
|
||||
:class="{ inthisfolder: path.active }"
|
||||
v-motion-slide-from-left-100
|
||||
@click="
|
||||
$router.push({ name: 'FolderView', params: { path: path.path } })
|
||||
"
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<template>
|
||||
<div
|
||||
class="title"
|
||||
v-motion-slide-from-left-100
|
||||
>
|
||||
Playlists
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user