Skip to content

Commit

Permalink
made sure that all tumBlue is used where appropriate
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Mar 6, 2024
1 parent 3839f1a commit 6f2a73e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webclient/src/components/DetailsFeedbackButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const { t } = useI18n({ useScope: "local" });
data-cy="open-feedback-details"
@click="global.openFeedback('entry', `[${route.params.id}]: `)"
>
<FlagIcon class="text-blue-600 h-4 w-4" />
<FlagIcon class="text-tumBlue-600 h-4 w-4 hover:text-tumBlue-900" />
</button>
</template>

Expand Down
2 changes: 1 addition & 1 deletion webclient/src/components/ShareButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const shareOptions = computed<UseShareOptions>(() => ({

<template>
<button type="button" :title="t('external_link')" class="focusable rounded-sm" @click="modalOpen = true">
<ShareIcon class="text-blue-600 h-4 w-4" />
<ShareIcon class="text-tumBlue-600 h-4 w-4 hover:text-tumBlue-900" />
</button>
<Modal v-model="modalOpen" :title="t('share')">
<div class="flex flex-col gap-5">
Expand Down
2 changes: 1 addition & 1 deletion webclient/src/pages/about/[name].vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const route = useRoute();
@apply ms-5 list-outside list-disc;
}
code {
@apply text-blue-900 bg-tumBlue-100 mb-4 inline-flex max-w-full items-center space-x-4 overflow-auto rounded-md px-4 py-3 text-left font-mono text-xs text-tumBlue-950 dark:bg-tumBlue-50;
@apply text-tumBlue-900 bg-tumBlue-100 mb-4 inline-flex max-w-full items-center space-x-4 overflow-auto rounded-md px-4 py-3 text-left font-mono text-xs text-tumBlue-950 dark:bg-tumBlue-50;
}
a {
@apply text-tumBlue-600 gap-1 rounded bg-transparent visited:text-tumBlue-600 hover:underline focus:ring-2 focus:ring-tumBlue-500 focus:ring-offset-2 focus-visible:outline-0;
Expand Down

0 comments on commit 6f2a73e

Please sign in to comment.