File tree Expand file tree Collapse file tree 4 files changed +13
-6
lines changed
packages/client/internals Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -134,6 +134,7 @@ module.exports = {
134
134
'/guide/' : slidebars ,
135
135
'/themes/' : slidebars ,
136
136
'/custom/' : slidebars ,
137
+ '/builtin/' : slidebars ,
137
138
'/' : slidebars ,
138
139
} ,
139
140
} ,
Original file line number Diff line number Diff line change 17
17
<NavLink
18
18
v-if =" hasAction"
19
19
:item =" { link: data.actionLink, text: data.actionText }"
20
- class =" action mx-2 rounded-tr-4xl rounded-tl-2xl rounded-br-2xl rounded-bl-3xl"
20
+ class =" action mx-2"
21
+ rounded =" tr-4xl tl-2xl br-2xl bl-3xl"
21
22
/>
22
23
23
24
<NavLink
24
25
v-if =" hasAltAction"
25
26
:item =" { link: data.altActionLink, text: data.altActionText }"
26
- class =" action alt mx-2 rounded-tr-2xl rounded-tl-3xl rounded-br-4xl rounded-bl-4xl"
27
+ class =" action alt mx-2"
28
+ rounded =" tr-2xl tl-3xl br-4xl bl-4xl"
27
29
/>
28
30
29
31
<div class =" mt-5 flex" >
@@ -61,7 +63,7 @@ const showHero = computed(() => {
61
63
})
62
64
</script >
63
65
64
- <style scoped>
66
+ <style scoped lang="postcss" >
65
67
.home-hero {
66
68
margin : 0 rem 0 2.75 rem ;
67
69
padding : 3 rem 1.5 rem ;
@@ -134,8 +136,8 @@ const showHero = computed(() => {
134
136
line-height : 40 px ;
135
137
border : 0 ;
136
138
color : #ffffff ;
137
- background-color : var (--c-brand );
138
139
transition : background-color 0.1 s ease;
140
+ @apply bg-primary cursor-pointer;
139
141
}
140
142
141
143
.action :deep (.item) {
@@ -151,6 +153,10 @@ const showHero = computed(() => {
151
153
color : #ffffff ;
152
154
}
153
155
156
+ .action:hover {
157
+ @apply bg-primary-deep;
158
+ }
159
+
154
160
.action.alt {
155
161
background-color : #476582 ;
156
162
}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Since Markdown naturally supports embedded HTML markups. You can style your cont
13
13
</div >
14
14
```
15
15
16
- ## Configure Windi CSS
16
+ ## Configurations
17
17
18
18
To configure the Windi CSS configuration, you will need to extend it by
19
19
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ const cardWidth = computed(() => {
35
35
36
36
<template >
37
37
<div
38
- v-if =" value"
38
+ v-show =" value"
39
39
class =" slides-overview bg-main !bg-opacity-75 p-16 overflow-y-auto"
40
40
>
41
41
<div
You can’t perform that action at this time.
0 commit comments