Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 1269675

Browse files
committed
fix: update docs
1 parent bf7bb2f commit 1269675

File tree

6 files changed

+19
-14
lines changed

6 files changed

+19
-14
lines changed

website/src/components/Navbar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
bg="white"
1111
z-index="10"
1212
border-top="6px solid"
13-
border-color="vue.500"
13+
border-color="emerald.500"
1414
>
1515
<CFlex align-items="center" justify-content="flex-start" flex="1">
1616
<chakra.a

website/src/components/home/Footer.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
target="_blank"
1212
rel="noopener noreferrer"
1313
href="https://github.com/chakra-ui/chakra-ui-vue-next"
14-
:_hover="{ color: 'vue.500' }"
14+
:_hover="{ color: 'emerald.500' }"
1515
mx="4"
1616
>
1717
<CIcon name="github" mt="8px" />
@@ -21,7 +21,7 @@
2121
target="_blank"
2222
rel="noopener noreferrer"
2323
href="https://twitter.com/chakraui_vue"
24-
:_hover="{ color: 'vue.500' }"
24+
:_hover="{ color: 'emerald.500' }"
2525
mx="4"
2626
>
2727
<CIcon name="twitter" mt="8px" />
@@ -31,7 +31,7 @@
3131
target="_blank"
3232
rel="noopener noreferrer"
3333
href="https://discord.gg/sq2Kp6x"
34-
:_hover="{ color: 'vue.500' }"
34+
:_hover="{ color: 'emerald.500' }"
3535
mx="4"
3636
>
3737
<CIcon name="discord" mt="8px" />

website/src/components/home/Hero.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
:template-columns="{ base: '1fr', md: '1fr 1fr' }"
55
pos="relative"
66
bg="white"
7-
:bgGradient="{ base: '', md: 'linear(to-br, white, white, vue.100)' }"
7+
:bgGradient="{ base: '', md: 'linear(to-br, white, white, emerald.100)' }"
88
:min-h="{
99
base: 'calc(100vh - 60px)',
1010
sm: 'auto',
@@ -26,7 +26,7 @@
2626
lineHeight="1.2"
2727
>
2828
Build accessible Vue apps
29-
<chakra.span color="vue.600" px="5px">with speed</chakra.span>
29+
<chakra.span color="emerald.600" px="5px">with speed</chakra.span>
3030
</chakra.h1>
3131
</chakra.div>
3232
<chakra.p
@@ -50,7 +50,7 @@
5050
target="_blank"
5151
rel="noopener noreferrer"
5252
color-scheme="green"
53-
bg="vue.600"
53+
bg="emerald.600"
5454
:flex="{ base: '1', sm: 'none' }"
5555
>
5656
Get started
@@ -66,7 +66,7 @@
6666
variant="outline"
6767
color-scheme="green"
6868
size="lg"
69-
color="vue.600"
69+
color="emerald.600"
7070
:flex="{ base: '1', sm: 'none' }"
7171
>
7272
Github
@@ -108,7 +108,7 @@
108108
text-decoration="none"
109109
font-size="sm"
110110
opacity="0.7"
111-
:_hover="{ color: 'vue.600', opacity: '1' }"
111+
:_hover="{ color: 'emerald.600', opacity: '1' }"
112112
mt="4"
113113
>
114114
Looking for the React.js version?

website/src/components/home/PilersHero.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
justify-content="center"
2020
align-items="center"
2121
mr="5"
22-
bg="vue.200"
22+
bg="emerald.200"
2323
w="50px"
2424
h="50px"
2525
rounded="full"
@@ -37,7 +37,7 @@
3737
justify-content="center"
3838
align-items="center"
3939
mr="5"
40-
bg="vue.200"
40+
bg="emerald.200"
4141
w="50px"
4242
h="50px"
4343
rounded="full"
@@ -55,7 +55,7 @@
5555
justify-content="center"
5656
align-items="center"
5757
mr="5"
58-
bg="vue.200"
58+
bg="emerald.200"
5959
w="50px"
6060
h="50px"
6161
rounded="full"

website/src/components/home/SandboxExample.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
lineHeight="1.2"
1212
>
1313
Less code.
14-
<chakra.span color="vue.600" px="5px">More speed.</chakra.span>
14+
<chakra.span color="emerald.600" px="5px">More speed.</chakra.span>
1515
</chakra.h1>
1616
<chakra.p
1717
:maxW="{ base: '560px', lg: '650px' }"

website/src/docs-theme/layout/MdxLayoutWrapper.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<template>
2-
<chakra.div :min-h="['auto', 'auto', '100vh']" w="100%" pt="60px" bg="vue.50">
2+
<chakra.div
3+
:min-h="['auto', 'auto', '100vh']"
4+
w="100%"
5+
pt="60px"
6+
bg="emerald.50"
7+
>
38
<app-header :frontmatter="frontmatter" />
49
<layout-docs style="border: 1px solid green" v-if="isDocs">
510
<slot />

0 commit comments

Comments
 (0)