alpha
Login
or
Join now
flo-bit.dev
/
svelsky
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/flo-bit/svelsky. editable svelte website with bluesky pds as backend
flo-bit.dev/svelsky/
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
add github corner
author
Florian
date
1 year ago
(May 8, 2025, 2:22 PM +0200)
commit
5f89d0ba
5f89d0ba542204e2409c1be94835abba99388902
parent
e846129e
e846129ee64e31dda62ea10e278f070d689608fe
+16
-13
3 changed files
Expand all
Collapse all
Unified
Split
src
app.css
lib
Website.svelte
website
WebsiteWrapper.svelte
+11
-11
src/app.css
View file
Reviewed
···
48
48
--accent-900: var(--color-pink-900);
49
49
--accent-950: var(--color-pink-950);
50
50
51
51
-
--base-50: var(--color-gray-50);
52
52
-
--base-100: var(--color-gray-100);
53
53
-
--base-200: var(--color-gray-200);
54
54
-
--base-300: var(--color-gray-300);
55
55
-
--base-400: var(--color-gray-400);
56
56
-
--base-500: var(--color-gray-500);
57
57
-
--base-600: var(--color-gray-600);
58
58
-
--base-700: var(--color-gray-700);
59
59
-
--base-800: var(--color-gray-800);
60
60
-
--base-900: var(--color-gray-900);
61
61
-
--base-950: var(--color-gray-950);
51
51
+
--base-50: var(--color-neutral-50);
52
52
+
--base-100: var(--color-neutral-100);
53
53
+
--base-200: var(--color-neutral-200);
54
54
+
--base-300: var(--color-neutral-300);
55
55
+
--base-400: var(--color-neutral-400);
56
56
+
--base-500: var(--color-neutral-500);
57
57
+
--base-600: var(--color-neutral-600);
58
58
+
--base-700: var(--color-neutral-700);
59
59
+
--base-800: var(--color-neutral-800);
60
60
+
--base-900: var(--color-neutral-900);
61
61
+
--base-950: var(--color-neutral-950);
62
62
}
63
63
64
64
.red {
+4
-1
src/lib/Website.svelte
View file
Reviewed
···
4
4
import MarkdownText from './website/components/MarkdownText.svelte';
5
5
import PlainText from './website/components/PlainText.svelte';
6
6
import SingleRecord from './website/components/SingleRecord.svelte';
7
7
-
import { Button, buttonVariants, cn, Subheading } from '@fuxui/base';
7
7
+
import { Button, cn } from '@fuxui/base';
8
8
import { base } from '$app/paths';
9
9
import ThemeWrapper from './website/ThemeWrapper.svelte';
10
10
import { getContext } from 'svelte';
···
12
12
import Head from './website/Head.svelte';
13
13
import EditHead from './website/EditHead.svelte';
14
14
import { parseUri } from './website/data';
15
15
+
import { GithubCorner } from '@fuxui/social';
15
16
16
17
const did = getContext('did');
17
18
</script>
···
27
28
</SingleRecord>
28
29
29
30
<ThemeWrapper>
31
31
+
<GithubCorner href="https://github.com/flo-bit/svelsky" />
32
32
+
30
33
<div class={['mx-auto my-16 max-w-2xl px-4']}>
31
34
<SingleRecord collection="dev.flo-bit.about" rkey="test">
32
35
{#snippet child(data)}
+1
-1
src/lib/website/WebsiteWrapper.svelte
View file
Reviewed
···
13
13
14
14
{@render children?.()}
15
15
16
16
-
<ThemeToggle class="fixed top-2 right-2" />
16
16
+
<ThemeToggle class="fixed top-2 left-2" />