Unfollow tool for Bluesky

add source code link

Changed files
+7 -2
src
+5 -1
src/App.module.css
···
}
button {
-
margin: 5px;
+
margin: 10px;
font-size: 125%;
}
+
+
.Warning {
+
margin-bottom: 10px;
+
}
+2 -1
src/App.tsx
···
return (
<div class={styles.App}>
<h1>cleanfollow-bsky</h1>
-
<div class="warning">
+
<div class={styles.Warning}>
<p>
warning: unfollows all deleted accounts and accounts you follow that
have blocked you
</p>
<p>USE AT YOUR OWN RISK</p>
+
<a href="https://github.com/notjuliet/cleanfollow-bsky">Source Code</a>
</div>
<UnfollowForm />
</div>