Skip to content

Commit

Permalink
Fix link-button colour on the FTUE finish page.
Browse files Browse the repository at this point in the history
  • Loading branch information
MelissaAutumn committed Sep 12, 2024
1 parent 7180ead commit 740661e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions frontend/src/components/FTUE/Finish.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { useUserStore } from '@/stores/user-store';
import { callKey } from '@/keys';
import PrimaryButton from '@/tbpro/elements/PrimaryButton.vue';
import LinkButton from '@/tbpro/elements/LinkButton.vue';
import CopyIcon from "@/tbpro/icons/CopyIcon.vue";
import CopyIcon from '@/tbpro/icons/CopyIcon.vue';
const { t } = useI18n();
const call = inject(callKey);
Expand Down Expand Up @@ -115,7 +115,6 @@ const copyLink = async () => {
}
.link {
color: var(--colour-service-accent-1);
text-decoration: underline;
border: none;
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/tbpro/elements/BaseButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ interface Props {
size?: string;
tooltip?: string;
forceTooltip?: boolean;
};
}
withDefaults(defineProps<Props>(), {
type: 'secondary',
size: 'regular',
tooltip: '',
forceTooltip: false,
})
});
</script>

<template>
Expand Down Expand Up @@ -92,7 +92,7 @@ button:hover > .tooltip,
.text {
padding: 0;
user-select: all;
font-weight: 400;
font-weight: 600;
line-height: 1;
}
}
Expand Down

0 comments on commit 740661e

Please sign in to comment.