Skip to content

Commit

Permalink
small css fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdenasser committed Nov 13, 2024
1 parent e74a878 commit a5ce84c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/components/toolbar/RefreshControls.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
title={isFrozen ? "Resume Updates" : "Pause Updates"}
>
{#if isFrozen}
<Fa icon={faPlay} />
<Fa icon={faPlay} color="var(--red)" />
{:else}
<Fa icon={faPause} />
<Fa icon={faPause} color="var(--subtext0)" />
{/if}
</button>
</div>
Expand All @@ -62,6 +62,7 @@
height: 28px;
border: none;
background: var(--surface0);
border: 1px solid var(--surface1);
color: var(--text);
border-radius: 6px;
cursor: pointer;
Expand All @@ -73,8 +74,7 @@
}
.btn-action.frozen {
background: var(--blue);
color: var(--base);
background: var(--yellow);
}
.select-input {
Expand Down

0 comments on commit a5ce84c

Please sign in to comment.