mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
🛠️ Design improvements.
This commit is contained in:
+22
-10
@@ -9,38 +9,39 @@
|
||||
.filter((category, index, array) => array.indexOf(category) === index);
|
||||
|
||||
// Icons:
|
||||
import Heart from 'phosphor-svelte/lib/Heart';
|
||||
import ArrowUpRight from 'phosphor-svelte/lib/ArrowUpRight';
|
||||
|
||||
// Toaster:
|
||||
import { Toaster } from 'svelte-french-toast';
|
||||
</script>
|
||||
|
||||
<main class="bg-dark font-sans text-mini text-white min-h-screen">
|
||||
<nav class="fixed top-0 left-0 z-50 h-full pb-10 overflow-x-hidden overflow-y-auto w-60">
|
||||
<div class="px-6 py-6 items-center">
|
||||
<div class="border-b border-neutral-700/40 pb-3 mb-3">
|
||||
<main class="min-h-screen bg-dark font-sans text-mini text-white">
|
||||
<nav class="fixed top-0 left-0 z-50 h-full w-60 overflow-y-auto overflow-x-hidden pb-10">
|
||||
<div class="items-center px-6 py-6">
|
||||
<div class="mb-3 border-b border-neutral-700/40 pb-3">
|
||||
<a href="/">
|
||||
<div class="flex items-center space-x-2">
|
||||
<h3 class="text-xl font-medium">svgl</h3>
|
||||
<p class="text-neutral-500">v3.0.0</p>
|
||||
</div>
|
||||
</a>
|
||||
<p class="mt-2 text-neutral-400 font-medium">✨ Optimized SVGs logos</p>
|
||||
<p class="mt-2 font-medium text-neutral-400">✨ Optimized SVGs logos</p>
|
||||
</div>
|
||||
<div class="pb-3 mb-3 border-b border-neutral-700/40 flex flex-col space-y-1">
|
||||
<div class="mb-3 flex flex-col space-y-1 border-b border-neutral-700/40 pb-3">
|
||||
{#each categories as category}
|
||||
<a
|
||||
href={`/category/${category.toLowerCase()}`}
|
||||
class="flex w-full items-center p-2 hover:bg-neutral-700/40 rounded-md duration-100 transition-all"
|
||||
class="flex w-full items-center rounded-md p-2 transition-all duration-100 hover:bg-neutral-700/40"
|
||||
>{category}</a
|
||||
>
|
||||
{/each}
|
||||
</div>
|
||||
<div class="flex flex-col space-y-1">
|
||||
<div class="flex flex-col space-y-1 border-b border-neutral-700/40 pb-3">
|
||||
<a
|
||||
href="https://github.com/pheralb/svgl#-getting-started"
|
||||
target="_blank"
|
||||
class="flex w-full items-center space-x-2 p-2 hover:bg-neutral-700/40 rounded-md duration-100 transition-all"
|
||||
class="flex w-full items-center space-x-2 rounded-md p-2 transition-all duration-100 hover:bg-neutral-700/40"
|
||||
>
|
||||
<span>Submit logo</span>
|
||||
<ArrowUpRight size={16} />
|
||||
@@ -48,12 +49,23 @@
|
||||
<a
|
||||
href="https://github.com/pheralb/svgl#-getting-started"
|
||||
target="_blank"
|
||||
class="flex w-full items-center space-x-2 p-2 hover:bg-neutral-700/40 rounded-md duration-100 transition-all"
|
||||
class="flex w-full items-center space-x-2 rounded-md p-2 transition-all duration-100 hover:bg-neutral-700/40"
|
||||
>
|
||||
<span>Repository</span>
|
||||
<ArrowUpRight size={16} />
|
||||
</a>
|
||||
</div>
|
||||
<a
|
||||
href="https://twitter.com/pheralb_"
|
||||
target="_blank"
|
||||
class="mt-5 flex items-center space-x-2 text-neutral-400 transition-all duration-100 hover:text-white"
|
||||
>
|
||||
<Heart color="#991b1b" size={18} />
|
||||
<div class="flex items-center space-x-1">
|
||||
<p class="text-muted text-sm">Created by pheralb</p>
|
||||
<ArrowUpRight size={12} />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="ml-60 py-6">
|
||||
|
||||
Reference in New Issue
Block a user