mirror of
https://github.com/crater-invoice/crater.git
synced 2025-12-15 01:42:54 -05:00
Compare commits
1 Commits
dark-globa
...
dark-empty
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
19e20474e7 |
@@ -41,11 +41,6 @@
|
|||||||
w-[300px]
|
w-[300px]
|
||||||
h-[200px]
|
h-[200px]
|
||||||
right-0
|
right-0
|
||||||
dark:border-white/10
|
|
||||||
dark:text-white
|
|
||||||
dark:bg-gray-800/[.95]
|
|
||||||
dark:shadow-glass
|
|
||||||
dark:backdrop-blur-xl
|
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
@@ -73,7 +68,7 @@
|
|||||||
<div
|
<div
|
||||||
v-for="(customer, index) in usersStore.customerList"
|
v-for="(customer, index) in usersStore.customerList"
|
||||||
:key="index"
|
:key="index"
|
||||||
class="p-2 hover:bg-gray-100 cursor-pointer rounded-md dark:hover:bg-gray-700/40"
|
class="p-2 hover:bg-gray-100 cursor-pointer rounded-md"
|
||||||
>
|
>
|
||||||
<router-link
|
<router-link
|
||||||
:to="{ path: `/admin/customers/${customer.id}/view` }"
|
:to="{ path: `/admin/customers/${customer.id}/view` }"
|
||||||
@@ -92,7 +87,6 @@
|
|||||||
bg-gray-200
|
bg-gray-200
|
||||||
rounded-full
|
rounded-full
|
||||||
text-primary-500
|
text-primary-500
|
||||||
dark:bg-gray-600
|
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
{{ initGenerator(customer.name) }}
|
{{ initGenerator(customer.name) }}
|
||||||
@@ -122,7 +116,7 @@
|
|||||||
<div
|
<div
|
||||||
v-for="(user, index) in usersStore.userList"
|
v-for="(user, index) in usersStore.userList"
|
||||||
:key="index"
|
:key="index"
|
||||||
class="p-2 hover:bg-gray-100 cursor-pointer rounded-md dark:hover:bg-gray-700/40"
|
class="p-2 hover:bg-gray-100 cursor-pointer rounded-md"
|
||||||
>
|
>
|
||||||
<router-link
|
<router-link
|
||||||
:to="{ path: `/admin/users/${user.id}/edit` }"
|
:to="{ path: `/admin/users/${user.id}/edit` }"
|
||||||
@@ -141,7 +135,6 @@
|
|||||||
bg-gray-200
|
bg-gray-200
|
||||||
rounded-full
|
rounded-full
|
||||||
text-primary-500
|
text-primary-500
|
||||||
dark:bg-gray-600
|
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
{{ initGenerator(user.name) }}
|
{{ initGenerator(user.name) }}
|
||||||
|
|||||||
@@ -1,18 +1,24 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="flex flex-col items-center justify-center mt-16">
|
<div class="flex flex-col items-center justify-center mt-16">
|
||||||
<div class="flex flex-col items-center justify-center">
|
<div class="relative">
|
||||||
<slot></slot>
|
<BaseDarkHighlight class="bg-highlight/[.07] top-2" />
|
||||||
</div>
|
|
||||||
<div class="mt-2">
|
<div class="relative z-5 flex flex-col items-center">
|
||||||
<label class="font-medium">{{ title }}</label>
|
<div class="flex flex-col items-center justify-center">
|
||||||
</div>
|
<slot />
|
||||||
<div class="mt-2">
|
</div>
|
||||||
<label class="text-gray-500">
|
<div class="mt-2">
|
||||||
{{ description }}
|
<label class="font-medium">{{ title }}</label>
|
||||||
</label>
|
</div>
|
||||||
</div>
|
<div class="mt-2 text-center md:text-left">
|
||||||
<div class="mt-6">
|
<label class="text-gray-500 dark:text-gray-400">
|
||||||
<slot name="actions" />
|
{{ description }}
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<div class="mt-6">
|
||||||
|
<slot name="actions" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user