- Added Preferences tab
	- Piped Api Selection
	- Bug Fixes
This commit is contained in:
Shiny Nematoda 2022-05-15 09:51:06 +05:30
parent 19fc65e6c0
commit 0c1bb172b1
16 changed files with 384 additions and 216 deletions

View file

@ -1,15 +1,16 @@
<script setup>
defineProps({
import { useRand } from '../scripts/colors.js';
const rand = useRand();
const props = defineProps({
name: String,
author: {
type: String,
default: '',
},
grad: String,
art: {
type: String,
default: 'linear-gradient(45deg, #88c0d0, #5e81ac)',
},
art: String,
});
defineEmits(['open-album']);
@ -38,8 +39,8 @@ defineEmits(['open-album']);
background-color: var(--color-background);
}
.card-bg {
--art: v-bind('grad || art');
background-color: v-bind('grad');
--grad: v-bind('grad || rand');
--art: v-bind('art || grad || rand');
height: 13rem;
width: 13rem;
}