frontend for xcvr appview

view history visibility

+11 -1
+11 -1
src/routes/c/[handle]/[rkey]/+page.svelte
··· 114 114 <h2 class="topic">{ctx?.topic}</h2> 115 115 {/if} 116 116 <div> 117 - <a href="history"> view history </a> 117 + <a href="history"> 118 + view history <span class="hidden-hover"> 119 + (i will delete your local lrc messages!) 120 + </span></a 121 + > 118 122 </div> 119 123 <button 120 124 id="settingsifier" ··· 236 240 } 237 241 input { 238 242 accent-color: var(--theme); 243 + } 244 + .hidden-hover { 245 + visibility: hidden; 246 + } 247 + .history:hover .hidden-hover { 248 + visibility: visible; 239 249 } 240 250 </style>