Apple pay support, fix publish key (#2171)

* Apple pay support, fix publish key

* fix api url
This commit is contained in:
Geometrically
2024-08-17 17:43:12 -07:00
committed by GitHub
parent c84e2e0537
commit 807aa04807
6 changed files with 20 additions and 7 deletions

View File

@@ -6,6 +6,7 @@
<template v-else-if="type === 'admin'"> <ModrinthIcon /> Modrinth Team</template>
<template v-else-if="type === 'moderator'"> <ModeratorIcon /> Moderator</template>
<template v-else-if="type === 'creator'"><CreatorIcon /> Creator</template>
<template v-else-if="type === 'plus'"><PlusIcon /> Modrinth Plus</template>
<!-- Project statuses -->
<template v-else-if="type === 'approved'"><ListIcon /> Listed</template>
@@ -36,6 +37,7 @@
<script setup>
import ModrinthIcon from "~/assets/images/logo.svg?component";
import PlusIcon from "~/assets/images/utils/plus.svg?component";
import ModeratorIcon from "~/assets/images/sidebar/admin.svg?component";
import CreatorIcon from "~/assets/images/utils/box.svg?component";
import ListIcon from "~/assets/images/utils/list.svg?component";
@@ -114,6 +116,7 @@ defineProps({
}
&.type--unlisted,
&.type--plus,
&.purple {
--badge-color: var(--color-purple);
}