small css fixes

This commit is contained in:
Abdenasser 2024-11-14 00:28:10 +01:00
parent e74a878d4d
commit a5ce84c88d

View File

@ -35,9 +35,9 @@
title={isFrozen ? "Resume Updates" : "Pause Updates"} title={isFrozen ? "Resume Updates" : "Pause Updates"}
> >
{#if isFrozen} {#if isFrozen}
<Fa icon={faPlay} /> <Fa icon={faPlay} color="var(--red)" />
{:else} {:else}
<Fa icon={faPause} /> <Fa icon={faPause} color="var(--subtext0)" />
{/if} {/if}
</button> </button>
</div> </div>
@ -62,6 +62,7 @@
height: 28px; height: 28px;
border: none; border: none;
background: var(--surface0); background: var(--surface0);
border: 1px solid var(--surface1);
color: var(--text); color: var(--text);
border-radius: 6px; border-radius: 6px;
cursor: pointer; cursor: pointer;
@ -73,8 +74,7 @@
} }
.btn-action.frozen { .btn-action.frozen {
background: var(--blue); background: var(--yellow);
color: var(--base);
} }
.select-input { .select-input {