mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 05:08:00 +02:00
Changes:
- Added Preferences tab - Piped Api Selection - Bug Fixes
This commit is contained in:
parent
19fc65e6c0
commit
0c1bb172b1
16 changed files with 384 additions and 216 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue