File tree Expand file tree Collapse file tree 3 files changed +12
-5
lines changed
Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -134,6 +134,7 @@ module.exports = {
134134 '/guide/' : slidebars ,
135135 '/themes/' : slidebars ,
136136 '/custom/' : slidebars ,
137+ '/builtin/' : slidebars ,
137138 '/' : slidebars ,
138139 } ,
139140 } ,
Original file line number Diff line number Diff line change 1717 <NavLink
1818 v-if =" hasAction"
1919 :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"
2122 />
2223
2324 <NavLink
2425 v-if =" hasAltAction"
2526 :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"
2729 />
2830
2931 <div class =" mt-5 flex" >
@@ -61,7 +63,7 @@ const showHero = computed(() => {
6163})
6264 </script >
6365
64- <style scoped>
66+ <style scoped lang="postcss" >
6567.home-hero {
6668 margin : 0 rem 0 2.75 rem ;
6769 padding : 3 rem 1.5 rem ;
@@ -134,8 +136,8 @@ const showHero = computed(() => {
134136 line-height : 40 px ;
135137 border : 0 ;
136138 color : #ffffff ;
137- background-color : var (--c-brand );
138139 transition : background-color 0.1 s ease;
140+ @apply bg-primary cursor-pointer;
139141}
140142
141143.action :deep (.item) {
@@ -151,6 +153,10 @@ const showHero = computed(() => {
151153 color : #ffffff ;
152154}
153155
156+ .action:hover {
157+ @apply bg-primary-deep;
158+ }
159+
154160.action.alt {
155161 background-color : #476582 ;
156162}
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
1313</div >
1414```
1515
16- ## Configure Windi CSS
16+ ## Configurations
1717
1818To configure the Windi CSS configuration, you will need to extend it by
1919
You can’t perform that action at this time.
0 commit comments