mirror of
https://github.com/zoriya/vex.git
synced 2025-12-06 07:06:09 +00:00
Hidden search input
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
export let feed: Feed;
|
export let feed: Feed;
|
||||||
|
|
||||||
let viewTags = false;
|
let viewTags = false;
|
||||||
let hover = false;
|
let hover = false;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<article>
|
<article>
|
||||||
|
|||||||
@@ -48,10 +48,10 @@
|
|||||||
];
|
];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<MultiSelect items={countries} bind:value={selected} size="lg" />
|
<!-- <MultiSelect items={countries} bind:value={selected} size="lg" />
|
||||||
<Search>
|
<Search>
|
||||||
<Button>Search</Button>
|
<Button>Search</Button>
|
||||||
</Search>
|
</Search> -->
|
||||||
<main>
|
<main>
|
||||||
<Timeline order="vertical" class="max-w-3xl">
|
<Timeline order="vertical" class="max-w-3xl">
|
||||||
{#each displayPosts as post}
|
{#each displayPosts as post}
|
||||||
|
|||||||
@@ -4,8 +4,8 @@ import type { Feed } from "$lib/types";
|
|||||||
const feeds: Feed[] = [
|
const feeds: Feed[] = [
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1",
|
||||||
title: "The first feed",
|
name: "The first feed",
|
||||||
url: "https://example.com/feed",
|
link: "https://example.com/feed",
|
||||||
faviconUrl: "https://kit.svelte.dev/favicon.png",
|
faviconUrl: "https://kit.svelte.dev/favicon.png",
|
||||||
tags: ["tag1", "tag2"],
|
tags: ["tag1", "tag2"],
|
||||||
submitterId: "1",
|
submitterId: "1",
|
||||||
@@ -13,8 +13,8 @@ const feeds: Feed[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2",
|
||||||
title: "Phoronix",
|
name: "Phoronix",
|
||||||
url: "https://www.phoronix.com",
|
link: "https://www.phoronix.com",
|
||||||
faviconUrl: "https://www.phoronix.com/favicon.ico",
|
faviconUrl: "https://www.phoronix.com/favicon.ico",
|
||||||
tags: ["linux", "kernel", "gnu", "gnu/linux", "gnu+linux", "gnu linux"],
|
tags: ["linux", "kernel", "gnu", "gnu/linux", "gnu+linux", "gnu linux"],
|
||||||
submitterId: "1",
|
submitterId: "1",
|
||||||
@@ -22,8 +22,8 @@ const feeds: Feed[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3",
|
||||||
title: "LWN.net",
|
name: "LWN.net",
|
||||||
url: "https://lwn.net",
|
link: "https://lwn.net",
|
||||||
faviconUrl: "https://lwn.net/favicon.ico",
|
faviconUrl: "https://lwn.net/favicon.ico",
|
||||||
tags: ["linux", "kernel", "gnu", "gnu/linux", "gnu+linux", "gnu linux"],
|
tags: ["linux", "kernel", "gnu", "gnu/linux", "gnu+linux", "gnu linux"],
|
||||||
submitterId: "1",
|
submitterId: "1",
|
||||||
@@ -31,8 +31,8 @@ const feeds: Feed[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4",
|
||||||
title: "Reddit",
|
name: "Reddit",
|
||||||
url: "https://www.reddit.com",
|
link: "https://www.reddit.com",
|
||||||
faviconUrl: "https://www.reddit.com/favicon.ico",
|
faviconUrl: "https://www.reddit.com/favicon.ico",
|
||||||
tags: ["social", "news", "discussion"],
|
tags: ["social", "news", "discussion"],
|
||||||
submitterId: "1",
|
submitterId: "1",
|
||||||
@@ -45,8 +45,8 @@ const feeds: Feed[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5",
|
||||||
title: "Hacker News",
|
name: "Hacker News",
|
||||||
url: "https://news.ycombinator.com",
|
link: "https://news.ycombinator.com",
|
||||||
faviconUrl: "https://news.ycombinator.com/favicon.ico",
|
faviconUrl: "https://news.ycombinator.com/favicon.ico",
|
||||||
tags: ["news", "discussion"],
|
tags: ["news", "discussion"],
|
||||||
submitterId: "1",
|
submitterId: "1",
|
||||||
|
|||||||
Reference in New Issue
Block a user