diff options
| author | Fuwn <[email protected]> | 2024-01-04 08:06:45 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-04 08:06:45 -0800 |
| commit | 48ffcbd431ea9d12a73a55c233a4fd3834575d5e (patch) | |
| tree | e1ff446bcdd1ecc4aad35c5d6a33fc264bdd3945 /src/routes | |
| parent | feat(css): different check style (diff) | |
| download | due.moe-48ffcbd431ea9d12a73a55c233a4fd3834575d5e.tar.xz due.moe-48ffcbd431ea9d12a73a55c233a4fd3834575d5e.zip | |
feat(settings): cool button style
Diffstat (limited to 'src/routes')
| -rw-r--r-- | src/routes/settings/+page.svelte | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/routes/settings/+page.svelte b/src/routes/settings/+page.svelte index 3d8aee18..f61b236b 100644 --- a/src/routes/settings/+page.svelte +++ b/src/routes/settings/+page.svelte @@ -34,8 +34,7 @@ Please log in to modify settings. {:else} <Category title="RSS Feeds" id="feeds"> - <a - href={'#'} + <button on:click={() => navigator.clipboard.writeText( `https://${ @@ -45,8 +44,9 @@ }` )} > - Click to copy AniList notifications RSS feed URL and token - </a> + Copy to clipboard + </button> + Your AniList notifications RSS feed URL <SettingHint lineBreak>Do not share this link with <b>anyone</b>!</SettingHint> </Category> <Category title="Display"><Display /></Category> |