We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b360ac8 commit 9794877Copy full SHA for 9794877
src/client/theme-default/components/VPHomeContent.vue
@@ -1,7 +1,10 @@
1
<script setup lang="ts">
2
import { useWindowSize } from '@vueuse/core'
3
4
-const { width: vw } = useWindowSize({ includeScrollbar: false })
+const { width: vw } = useWindowSize({
5
+ initialWidth: 0,
6
+ includeScrollbar: false
7
+})
8
</script>
9
10
<template>
@@ -46,7 +49,7 @@ const { width: vw } = useWindowSize({ includeScrollbar: false })
46
49
}
47
50
48
51
.vp-doc :deep(.VPHomeSponsors a),
-.vp-doc :deep(.VPTeamPage a){
52
+.vp-doc :deep(.VPTeamPage a) {
53
text-decoration: none;
54
55
</style>
0 commit comments