File tree 4 files changed +6108
-125
lines changed
4 files changed +6108
-125
lines changed Original file line number Diff line number Diff line change 25
25
" last 1 firefox version" ,
26
26
" last 1 safari version"
27
27
]
28
+ },
29
+ "devDependencies" : {
30
+ "docusaurus" : " ^1.14.7"
28
31
}
29
32
}
Original file line number Diff line number Diff line change @@ -34,10 +34,8 @@ main details {
34
34
main details summary {
35
35
margin-bottom : 1rem ;
36
36
outline : none;
37
- /* Make it look like a link to notify user that it's clickable */
38
37
text-decoration : underline;
39
38
40
- /* Refer to #309 */
41
39
-webkit-user-select : none;
42
40
-moz-user-select : none;
43
41
-ms-user-select : none;
@@ -46,19 +44,48 @@ main details summary {
46
44
47
45
main details summary : hover {
48
46
cursor : pointer;
49
- /* Hide the underline on hover */
50
47
text-decoration : none;
51
48
}
52
49
main details : hover {
53
50
border-color : var (--ifm-pagination-nav-color-hover );
54
51
}
55
52
56
53
.homePageBtns {
57
- display : grid;
58
- gap : 20px ;
54
+ display : flex;
55
+ justify-content : center;
56
+ gap : 20px ;
57
+ flex-wrap : wrap;
59
58
}
60
- @media (min-width : 480px ) {
59
+
60
+ .homePageBtns a {
61
+ padding : 10px 40px ;
62
+ border : 1px solid;
63
+ border-radius : 5px ;
64
+ transition : all 0.3s ease;
65
+ min-width : 200px ;
66
+ text-align : center;
67
+ display : inline-block;
68
+ white-space : nowrap;
69
+ }
70
+
71
+ @media (max-width : 480px ) {
61
72
.homePageBtns {
62
- grid-template-columns : 1fr 1fr ;
73
+ flex-direction : column;
74
+ align-items : center;
75
+ }
76
+
77
+ .homePageBtns a {
78
+ width : 100% ;
79
+ max-width : 300px ;
80
+ padding : 8px 18px ;
81
+ font-size : 12px ;
82
+ }
83
+ }
84
+
85
+
86
+ @media (min-width : 1024px ) {
87
+ .homePageBtns a {
88
+ padding : 6px 180px ;
89
+ min-width : 250px ;
63
90
}
64
91
}
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export default function Home() {
24
24
to = { useBaseUrl ( siteConfig . customFields . firstDoc ) }
25
25
className = "button button--lg button--outline button--primary"
26
26
>
27
- Getting started
27
+ Getting Started
28
28
</ Link >
29
29
< Link
30
30
to = { "https://discord.gg/wTGS5z9" }
You can’t perform that action at this time.
0 commit comments