refactor: text-primary (#22141)

This commit is contained in:
Jason Rasmussen
2025-09-17 12:12:51 -04:00
committed by GitHub
parent 53a6724039
commit 11e72a0f35
63 changed files with 138 additions and 229 deletions

View File

@@ -1,8 +1,8 @@
<script lang="ts">
import type { Snippet } from 'svelte';
import { t } from 'svelte-i18n';
import { quintOut } from 'svelte/easing';
import { fly } from 'svelte/transition';
import { t } from 'svelte-i18n';
import type { Snippet } from 'svelte';
interface Props {
value: string;
@@ -31,7 +31,7 @@
<div class="mb-4 w-full">
<div class="flex h-[26px] place-items-center gap-1">
<label class="font-medium text-immich-primary dark:text-immich-dark-primary text-sm" for={label}>{label}</label>
<label class="font-medium text-primary text-sm" for={label}>{label}</label>
{#if required}
<div class="text-red-400">*</div>
{/if}