change icon for shares

pull/19/head
Niko PLP 3 months ago
parent 2ce8c4622e
commit 9ee267902b
  1. 4
      ng-app/src/lib/FullLayout.svelte
  2. 4
      ng-app/src/lib/Home.svelte
  3. 2
      ng-repo/src/types.rs

@ -35,7 +35,7 @@
PaperAirplane, PaperAirplane,
Bell, Bell,
User, User,
Share, Users,
} from "svelte-heros-v2"; } from "svelte-heros-v2";
let width: number; let width: number;
@ -142,7 +142,7 @@
</SidebarItem> </SidebarItem>
<SidebarItem label="Shared" href="#/shared" class="py-1 tall:p-2"> <SidebarItem label="Shared" href="#/shared" class="py-1 tall:p-2">
<svelte:fragment slot="icon"> <svelte:fragment slot="icon">
<Share <Users
tabindex="-1" tabindex="-1"
class="w-7 h-7 text-black transition duration-75 dark:text-white group-hover:text-gray-900 dark:group-hover:text-white" class="w-7 h-7 text-black transition duration-75 dark:text-white group-hover:text-gray-900 dark:group-hover:text-white"
/> />

@ -17,7 +17,7 @@
PaperAirplane, PaperAirplane,
Bell, Bell,
ArrowRightOnRectangle, ArrowRightOnRectangle,
Share, Users,
} from "svelte-heros-v2"; } from "svelte-heros-v2";
// @ts-ignore // @ts-ignore
import Logo from "../assets/nextgraph.svg?component"; import Logo from "../assets/nextgraph.svg?component";
@ -55,7 +55,7 @@
</a> </a>
<div class="w-auto flex row"> <div class="w-auto flex row">
<a href="#/shared" class="row items-center" on:click> <a href="#/shared" class="row items-center" on:click>
<Share <Users
tabindex="-1" tabindex="-1"
class="w-7 h-7 text-black transition duration-75 dark:text-white group-hover:text-gray-900 dark:group-hover:text-white focus:outline-none" class="w-7 h-7 text-black transition duration-75 dark:text-white group-hover:text-gray-900 dark:group-hover:text-white focus:outline-none"
/> />

@ -999,7 +999,7 @@ pub struct BlockContentV0 {
/// is empty if ObjectContent fits in one block or this block is a leaf. in both cases, encrypted_content is then not empty /// is empty if ObjectContent fits in one block or this block is a leaf. in both cases, encrypted_content is then not empty
pub children: Vec<BlockId>, pub children: Vec<BlockId>,
/// contains encrypted ChunkContentV0 (entirety, when fitting, or chunks of ObjectContentV0, in DataChunk) used for leaves of the Merkle tree, /// contains encrypted ChunkContentV0 (entirely, when fitting, or chunks of ObjectContentV0, in DataChunk) used for leaves of the Merkle tree,
/// or to store the keys of children (in InternalNode) /// or to store the keys of children (in InternalNode)
/// ///
/// Encrypted using convergent encryption with ChaCha20: /// Encrypted using convergent encryption with ChaCha20:

Loading…
Cancel
Save