Skip to content

Commit 394e789

Browse files
committed
feat: switched the dashboard to a better, sexier one
1 parent 2eb2528 commit 394e789

17 files changed

+509
-363
lines changed

resources/css/app.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,3 +164,6 @@ table .actions {
164164
/* display: none; */
165165
width: 0px;
166166
}
167+
.dark ::-webkit-scrollbar-thumb {
168+
background: #6e4695;
169+
}

resources/ts/Components/AdminSidebar.svelte

Lines changed: 0 additions & 110 deletions
This file was deleted.

resources/ts/Components/Footer.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@
164164
<div class="mt-12 border-t border-warm-gray-700 pt-8">
165165
<p class="text-base text-warm-gray-400 xl:text-center">
166166
&copy; {new Date().getFullYear()}
167-
{$page.props.siteName}. All rights reserved. Backed up by <a href="https://acelords.com">AceLords</a>
167+
{$page.props.siteName}. All rights reserved. Backed up by
168+
<a href="https://acelords.com" target="_blank">AceLords</a>
168169
</p>
169170
</div>
170171
</div>

resources/ts/Components/Title.svelte

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1+
<script lang="ts">
2+
export let bgColor = 'bg-primary-50 dark:bg-primary-900'
3+
</script>
4+
15
<div class="relative mb-10">
2-
<div class="absolute inset-0 flex items-center" aria-hidden="true">
3-
<div class="w-full border-t border-primary-500" />
4-
</div>
5-
<div class="relative flex justify-start">
6-
<span
7-
class="pr-3 bg-primary-50 dark:bg-primary-900 text-2xl font-bold text-primary-700 dark:text-primary-300"
8-
>
9-
<slot />
10-
</span>
11-
</div>
6+
<div class="absolute inset-0 flex items-center" aria-hidden="true">
7+
<div class="w-full border-t border-primary-500" />
8+
</div>
9+
<div class="relative flex justify-start">
10+
<span class="pr-3 {bgColor} text-2xl font-bold text-primary-700 dark:text-primary-300">
11+
<slot />
12+
</span>
13+
</div>
1214
</div>

resources/ts/Components/UserSidebar.svelte

Lines changed: 0 additions & 100 deletions
This file was deleted.

0 commit comments

Comments
 (0)