Skip to content

Commit

Permalink
added slogan "Searching the Universe since 2017", fixes #221
Browse files Browse the repository at this point in the history
  • Loading branch information
femans committed Sep 23, 2022
1 parent 7cbbcb8 commit f3abf15
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions src/components/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ import SearchBar from "@/components/pageLayout/SearchBar.vue";
<v-container class="pa-0 fill-height d-flex mt-12">
<v-row class="align-content-center">
<v-col class="pa-2">
<!-- TODO: put a better title or remove this tag-->
<h3 class="mb-2 text-center hidden-sm-and-down text-white"></h3>
<h3 class="mb-2 text-center hidden-sm-and-down text-white">
Searching the Universe since 2017
</h3>
<SearchBar />
</v-col>
</v-row>
Expand Down
4 changes: 2 additions & 2 deletions src/components/pageLayout/PlayList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ import VMarquee from "@/components/shared/VMarquee.vue";
left: 50%;
transform: translate(-50%, -50%);
"
color="white"
color="planetifyLight"
:icon="mdiCircleSmall"
/>
</blink-blink>
Expand All @@ -85,7 +85,7 @@ import VMarquee from "@/components/shared/VMarquee.vue";
<v-icon
v-if="!entry.audio?.error"
size="42"
color="white"
color="planetifyLight"
style="
opacity: 0.9;
position: absolute;
Expand Down
2 changes: 1 addition & 1 deletion src/composables/audioControls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export const nextPlaylistEntry = () => {
return playlistIndex + 1;
};

export const removePlaylistEntry = (index) => {
export const removePlaylistEntry = (index: number) => {
const list = store.getters["playlist/getPlaylist"].entries;
store.commit("playlist/setPlaylist", {
entries: [...list.slice(0, index), ...list.slice(index + 1)],
Expand Down
1 change: 1 addition & 0 deletions src/plugins/vuetify/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const ipfsTheme = {
warning: "#FFC107",
appBar: "#f5f5f5",
planetifyDark: "#0d0041",
planetifyLight: "#e3dbff",
},
};

Expand Down

0 comments on commit f3abf15

Please sign in to comment.