File tree Expand file tree Collapse file tree 2 files changed +22
-6
lines changed Expand file tree Collapse file tree 2 files changed +22
-6
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,24 @@ export default defineConfig({
34
34
logo : 'logo.svg' ,
35
35
nav : [
36
36
{ text : 'Guide' , link : '/guide/introduction.html' } ,
37
- { text : 'Reference' , link : '/reference/cli.html' } ,
38
- { text : 'Examples' , link : '/catalog/' } ,
37
+ {
38
+ text : 'Reference' ,
39
+ items : [
40
+ { text : 'Command Line Interface' , link : '/reference/cli.html' } ,
41
+ { text : 'Rule Config' , link : '/reference/yaml.html' } ,
42
+ { text : 'Rule Object' , link : '/reference/rule.html' } ,
43
+ { text : 'Playground Manual' , link : '/reference/playground.html' } ,
44
+ ]
45
+ } ,
46
+ {
47
+ text : 'Resources' ,
48
+ items : [
49
+ { text : 'FAQ' , link : '/advanced/faq.html' } ,
50
+ { text : 'Rule Examples' , link : '/catalog/' } ,
51
+ { text : 'Custom Language' , link : '/advanced/custom-language.html' } ,
52
+ { text : 'Contributing' , link : '/contributing/how-to.html' } ,
53
+ ] ,
54
+ } ,
39
55
{ text : 'Playground' , link : '/playground.html' } ,
40
56
] ,
41
57
socialLinks : [
Original file line number Diff line number Diff line change 130
130
line-height : 1.1 ;
131
131
}
132
132
133
- button {
133
+ . root button {
134
134
border-radius : 8px ;
135
135
border : 1px solid transparent;
136
136
padding : 0.6em 1.2em ;
@@ -141,13 +141,13 @@ button {
141
141
cursor : pointer;
142
142
transition : border-color 0.25s ;
143
143
}
144
- button : hover {
144
+ . root button : hover {
145
145
border-color : var (--vp-button-alt-hover-border );
146
146
color : var (--vp-button-alt-hover-text );
147
147
background-color : var (--vp-button-alt-hover-bg );
148
148
}
149
- button : focus ,
150
- button : focus-visible {
149
+ . root button : focus ,
150
+ . root button : focus-visible {
151
151
outline : 4px auto -webkit-focus-ring-color;
152
152
}
153
153
You can’t perform that action at this time.
0 commit comments