Skip to content

Commit 491bae6

Browse files
committed
Simplet fixes
1 parent 47ab5c8 commit 491bae6

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

frontend/assets/styles/_naive-ui.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ body > .n-message-container {
446446

447447
&:focus,
448448
&:hover {
449-
background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23F9FF73' stroke-width='1' stroke-dasharray='4' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
449+
background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%2378DCE8' stroke-width='1' stroke-dasharray='4' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
450450
}
451451
}
452452
.n-upload-file-info {

frontend/components/general/Card.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<template>
2-
<div class="relative w-full max-w-md border-card border-black p-6">
2+
<div
3+
class="relative w-full max-w-md border-card border-black hover:border-grey-transparent transition-colors duration-300 p-6"
4+
>
35
<div class="h-full w-full flex flex-col justify-between gap-2">
46
<div v-if="icon || img" class="flex-cc h-12 w-12 rounded -mb-2">
57
<NuxtIcon v-if="icon" :name="icon" class="icon-auto text-2xl" />

frontend/components/parts/Statistics.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div v-if="statistics" class="card-dark small md:min-w-96 inline-flex gap-4">
2+
<div v-if="statistics" class="card-dark small md:min-w-96 inline-flex items-center gap-4">
33
<div class="w-24">
44
<img
55
v-if="config.public.COLLECTION_LOGO"

frontend/components/parts/airdrop/Airdrop.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,13 @@
4545
<h6 class="mt-8 mb-2">Distribution methods</h6>
4646
<div class="flex gap-6">
4747
<Card
48+
class="cursor-pointer"
4849
icon="icon/airdrop"
4950
title="Email Mint"
5051
content="Upload a list of emails and send minting invites. Users will receive a branded email from you with a link to claim their NFT - no wallet required."
5152
:tags="['Gasless for users', 'Email user base', 'Rewards', 'Easy claim']"
5253
:alert="authStore.smtpConfigured ? '' : 'Needs setup'"
54+
@click="openAirdrop(AirdropMethod.EMAIL)"
5355
>
5456
<template #additional>
5557
<div class="flex gap-2 w-full mt-4">
@@ -59,10 +61,12 @@
5961
</template>
6062
</Card>
6163
<Card
64+
class="cursor-pointer"
6265
icon="icon/wallet"
6366
title="Wallet Mint"
6467
content="Upload a list of emails and send minting invites. Users will receive a branded email from you with a link to claim their NFT."
6568
:tags="['Whitelisting', 'Rewards', 'Gasless for users']"
69+
@click="openAirdrop(AirdropMethod.WALLET)"
6670
>
6771
<template #additional>
6872
<div class="flex gap-2 w-full mt-4">

0 commit comments

Comments
 (0)