Skip to content

Commit 655aa31

Browse files
committed
Fix global link style
1 parent 2b6f336 commit 655aa31

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/modals/RollupRankModal.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ watch(
143143
144144
<Text size="12" color="secondary" :style="{ lineHeight: '1.4' }">
145145
Learn more about rank calculation in the
146-
<NuxtLink to="https://docs.celenium.io/features/rollup-activity-rank" target="_blank">overview article</NuxtLink>
146+
<NuxtLink to="https://docs.celenium.io/features/rollup-activity-rank" target="_blank" :class="$style.link">overview article</NuxtLink>
147147
and the
148-
<NuxtLink to="https://docs.celenium.io/features/rollup-activity-rank-specification" target="_blank">detailed specification</NuxtLink>
148+
<NuxtLink to="https://docs.celenium.io/features/rollup-activity-rank-specification" target="_blank" :class="$style.link">detailed specification</NuxtLink>
149149
.
150150
</Text>
151151
@@ -245,7 +245,7 @@ watch(
245245
</template>
246246
247247
<style module>
248-
a {
248+
.link {
249249
color: var(--brand);
250250
251251
&:hover {

0 commit comments

Comments
 (0)