tangled
alpha
login
or
join now
moth11.net
/
xcvr
2
fork
atom
frontend for xcvr appview
2
fork
atom
overview
issues
pulls
pipelines
view history visibility
moth11.net
6 months ago
90d51ba3
a4e1ce02
+11
-1
1 changed file
expand all
collapse all
unified
split
src
routes
c
[handle]
[rkey]
+page.svelte
+11
-1
src/routes/c/[handle]/[rkey]/+page.svelte
···
114
114
<h2 class="topic">{ctx?.topic}</h2>
115
115
{/if}
116
116
<div>
117
117
-
<a href="history"> view history </a>
117
117
+
<a href="history">
118
118
+
view history <span class="hidden-hover">
119
119
+
(i will delete your local lrc messages!)
120
120
+
</span></a
121
121
+
>
118
122
</div>
119
123
<button
120
124
id="settingsifier"
···
236
240
}
237
241
input {
238
242
accent-color: var(--theme);
243
243
+
}
244
244
+
.hidden-hover {
245
245
+
visibility: hidden;
246
246
+
}
247
247
+
.history:hover .hidden-hover {
248
248
+
visibility: visible;
239
249
}
240
250
</style>