Skip to content

Commit 02189c7

Browse files
committed
💄 Updated UI to fit build
Signed-off-by: Ayaka Neko <neko@ayaka.moe>
1 parent 0fd0b52 commit 02189c7

File tree

4 files changed

+7
-12
lines changed

4 files changed

+7
-12
lines changed

src/components/Header.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,7 @@ export default {
349349
.link {
350350
margin-left: .75rem;
351351
font-size: 1.2rem;
352+
color: white;
352353
img {
353354
height: 3rem;
354355
}

src/components/Layout/AppStyle.less

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
text-align: left;
1616
}
1717
}
18+
1819
/deep/ .v-autocomplete:not(.v-input--is-disabled).v-select.v-text-field input {
1920
color: white;
2021
}

src/components/Layout/Space.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default {
4444
height: 100%;
4545
display: flex;
4646
flex-direction: column;
47-
background: #0000;
47+
background: #0000 !important;
4848
}
4949
.slot-shell {
5050
margin-top: 73px;

src/pages/Music/_id.vue

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,6 @@
176176
import spaceLayout from '@/components/Layout/Space'
177177
import miniAvatar from '@/components/User/MiniAvatar'
178178
179-
import mp3 from '@/assets/music/FlowerDance.mp3'
180-
import album from '@/assets/music/FlowerDance.jpg'
181179
import api from '@/api/api'
182180
import decode from '@/util/decode'
183181
import { mapState } from 'vuex'
@@ -210,14 +208,6 @@ export default {
210208
owned: false,
211209
showDialog: false,
212210
loading: true,
213-
audioList: {
214-
flowerdance: {
215-
name: 'Flower Dance',
216-
artist: 'DJ OKAWARI',
217-
url: mp3,
218-
cover: album
219-
}
220-
},
221211
users: [
222212
{
223213
avatar: 'https://picsum.photos/510/300?random'
@@ -375,7 +365,7 @@ export default {
375365
const reader = new FileReader()
376366
reader.readAsArrayBuffer(new Blob([music.data], { type: music.type }))
377367
reader.onload = (event) => {
378-
const url = window.webkitURL.createObjectURL(new Blob([event.target.result]))
368+
const url = window.webkitURL.createObjectURL(new Blob([event.target.result], { type: music.type }))
379369
resolve(url)
380370
}
381371
} catch (e) {
@@ -640,6 +630,9 @@ export default {
640630
color: white;
641631
line-height: 20px;
642632
margin: 8px 0 0;
633+
&:hover {
634+
color: #E56D9B;
635+
}
643636
}
644637
}
645638

0 commit comments

Comments
 (0)