Compare commits

..

No commits in common. "b92a335e5016514922dd7b5ba190eb8b66ffc608" and "1511b62debc446814f23fc52030c5bd08c566e2f" have entirely different histories.

4 changed files with 2 additions and 7 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -40,7 +40,6 @@
"type": "module", "type": "module",
"dependencies": { "dependencies": {
"@atproto/api": "^0.13.12", "@atproto/api": "^0.13.12",
"@neodrag/svelte": "^2.0.6",
"@std/toml": "npm:@jsr/std__toml", "@std/toml": "npm:@jsr/std__toml",
"base64url": "^3.0.1", "base64url": "^3.0.1",
"nanoid": "^5.0.8", "nanoid": "^5.0.8",

View File

@ -1,6 +1,4 @@
<script lang="ts"> <script lang="ts">
import { draggable } from '@neodrag/svelte';
export let title: string | undefined = undefined; export let title: string | undefined = undefined;
export let iconUri: string = ''; export let iconUri: string = '';
export let id: string = ''; export let id: string = '';
@ -24,7 +22,6 @@
</script> </script>
<div <div
use:draggable={{applyUserSelectHack: true, handle: '.window-titlebar'}}
class=" class="
flex flex-col {sticky ? 'md:sticky md:-top-9' : ''} {center ? "mx-auto" : ""} flex flex-col {sticky ? 'md:sticky md:-top-9' : ''} {center ? "mx-auto" : ""}
max-w-screen-md xl:max-w-screen-lg 2xl:max-w-screen-xl min-w-[30ch] lg:min-w-[40ch] w-full md:w-fit [height:fit-content] max-w-screen-md xl:max-w-screen-lg 2xl:max-w-screen-xl min-w-[30ch] lg:min-w-[40ch] w-full md:w-fit [height:fit-content]
@ -36,9 +33,8 @@
{#if title !== undefined} {#if title !== undefined}
<div <div
class=" class="
window-titlebar p-1 border-ralsei-white border-8 p-1 border-ralsei-white border-8
bg-gradient-to-l from-ralsei-pink-neon to-ralsei-black to-75% bg-gradient-to-l from-ralsei-pink-neon to-ralsei-black to-75%
cursor-move
" "
style="border-style: hidden hidden ridge hidden;" style="border-style: hidden hidden ridge hidden;"
> >

View File

@ -159,7 +159,7 @@
<div class="navbox"> <div class="navbox">
<p><span class="text-ralsei-green-light text-shadow-green">{data.visitCount}</span> visit(s)</p> <p><span class="text-ralsei-green-light text-shadow-green">{data.visitCount}</span> visit(s)</p>
</div> </div>
<div class="navbox !gap-1"> <div class="navbox [gap:0.25rem_!important]">
<a class="align-middle hover:underline" href="/entries/_rss">rss</a> <a class="align-middle hover:underline" href="/entries/_rss">rss</a>
/ /
<a class="align-middle hover:underline" href="/entries/_jsonfeed">jsonfeed</a> <a class="align-middle hover:underline" href="/entries/_jsonfeed">jsonfeed</a>