Skip to content

Commit 921dd25

Browse files
committed
refactor(theme): update UserProfile component colors to use theme variables
1 parent 24ec785 commit 921dd25

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

web/components/UserProfile.ce.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ onMounted(() => {
120120
<span class="text-right text-12px sm:text-18px hidden 2xs:block" v-html="description" />
121121
<span class="text-header-text-secondary hidden md:inline-block px-8px">&bull;</span>
122122
</template>
123-
<button :title="t('Click to Copy LAN IP {0}', [lanIp])" class="opacity-100 hover:opacity-75 focus:opacity-75 transition-opacity" @click="copyLanIp()">
123+
<button :title="t('Click to Copy LAN IP {0}', [lanIp])" class="text-header-text-primary opacity-100 hover:opacity-75 focus:opacity-75 transition-opacity" @click="copyLanIp()">
124124
{{ name }}
125125
</button>
126126
<span
@@ -132,7 +132,7 @@ onMounted(() => {
132132
</span>
133133
</h1>
134134

135-
<div class="block w-2px h-24px bg-popover" />
135+
<div class="block w-2px h-24px bg-header-text-secondary" />
136136

137137
<!-- Keep the sidebar out of staging/prod builds, but easily accessible for development -->
138138
<NotificationsSidebar />

web/components/UserProfile/ServerState.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const upgradeAction = computed((): ServerStateDataAction | undefined => {
2121
<span class="flex flex-row items-center gap-x-8px">
2222
<template v-if="upgradeAction">
2323
<UpcServerStateBuy
24-
class="text-white"
24+
class="text-header-text-secondary"
2525
:title="t('Upgrade Key')"
2626
@click="upgradeAction.click?.()"
2727
>

0 commit comments

Comments
 (0)