Skip to content

Commit c03a2eb

Browse files
homepageBtn responsiveness fix
1 parent 8459140 commit c03a2eb

File tree

4 files changed

+6108
-125
lines changed

4 files changed

+6108
-125
lines changed

website/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,8 @@
2525
"last 1 firefox version",
2626
"last 1 safari version"
2727
]
28+
},
29+
"devDependencies": {
30+
"docusaurus": "^1.14.7"
2831
}
2932
}

website/src/css/custom.css

+34-7
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,8 @@ main details {
3434
main details summary {
3535
margin-bottom: 1rem;
3636
outline: none;
37-
/* Make it look like a link to notify user that it's clickable */
3837
text-decoration: underline;
3938

40-
/* Refer to #309 */
4139
-webkit-user-select: none;
4240
-moz-user-select: none;
4341
-ms-user-select: none;
@@ -46,19 +44,48 @@ main details summary {
4644

4745
main details summary:hover {
4846
cursor: pointer;
49-
/* Hide the underline on hover */
5047
text-decoration: none;
5148
}
5249
main details:hover {
5350
border-color: var(--ifm-pagination-nav-color-hover);
5451
}
5552

5653
.homePageBtns {
57-
display: grid;
58-
gap: 20px;
54+
display: flex;
55+
justify-content: center;
56+
gap: 20px;
57+
flex-wrap: wrap;
5958
}
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) {
6172
.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;
6390
}
6491
}

website/src/pages/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default function Home() {
2424
to={useBaseUrl(siteConfig.customFields.firstDoc)}
2525
className="button button--lg button--outline button--primary"
2626
>
27-
Getting started
27+
Getting Started
2828
</Link>
2929
<Link
3030
to={"https://discord.gg/wTGS5z9"}

0 commit comments

Comments
 (0)