semantic update

This commit is contained in:
2026-02-20 10:41:15 +03:00
parent d7e4919d54
commit af74841765
18 changed files with 1856 additions and 1326 deletions

View File

@@ -123,7 +123,7 @@
<span>{error}</span>
<button
class="bg-terminal-surface text-terminal-text-subtle border border-terminal-border rounded-md px-3 py-1 text-xs cursor-pointer transition-all hover:bg-terminal-border hover:text-terminal-text-bright"
on:click={handleRefresh}>Retry</button
onclick={handleRefresh}>Retry</button
>
</div>
{:else}
@@ -149,11 +149,11 @@
<div
class="fixed inset-0 bg-gray-500/75 transition-opacity"
aria-hidden="true"
on:click={() => {
onclick={() => {
show = false;
dispatch("close");
}}
on:keydown={(e) => e.key === "Escape" && (show = false)}
onkeydown={(e) => e.key === "Escape" && (show = false)}
role="presentation"
></div>
@@ -170,7 +170,7 @@
</h3>
<button
class="text-gray-500 hover:text-gray-300"
on:click={() => {
onclick={() => {
show = false;
dispatch("close");
}}