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,
Bell,
User,
Share,
Users,
} from "svelte-heros-v2";
let width: number;
@ -142,7 +142,7 @@
</SidebarItem>
<SidebarItem label="Shared" href="#/shared" class="py-1 tall:p-2">
<svelte:fragment slot="icon">
<Share
<Users
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"
/>

@ -17,7 +17,7 @@
PaperAirplane,
Bell,
ArrowRightOnRectangle,
Share,
Users,
} from "svelte-heros-v2";
// @ts-ignore
import Logo from "../assets/nextgraph.svg?component";
@ -55,7 +55,7 @@
</a>
<div class="w-auto flex row">
<a href="#/shared" class="row items-center" on:click>
<Share
<Users
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"
/>

@ -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
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)
///
/// Encrypted using convergent encryption with ChaCha20:

Loading…
Cancel
Save