@conduction/docusaurus-preset 3.45.0 → 3.45.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -241,7 +241,10 @@ a.downloadsBadge:hover {
|
|
|
241
241
|
`:empty` keeps the margin off until then. */
|
|
242
242
|
.game {
|
|
243
243
|
grid-column: 1 / -1;
|
|
244
|
-
margin-top: 40px;
|
|
244
|
+
margin-top: 40px; /* The games hold between 460 and 760px of content, so a card
|
|
245
|
+
stretched across the whole hero is mostly empty on the right. Wide
|
|
246
|
+
enough for the widest board, and no wider. */
|
|
247
|
+
max-width: 820px;
|
|
245
248
|
}
|
|
246
249
|
.game:empty { display: none; }
|
|
247
250
|
@media (max-width: 900px) {
|
|
@@ -30,7 +30,10 @@
|
|
|
30
30
|
hero reads as an accident. Empty until the game is found. */
|
|
31
31
|
.game {
|
|
32
32
|
grid-column: 1 / -1;
|
|
33
|
-
margin-top: var(--space-8);
|
|
33
|
+
margin-top: var(--space-8); /* The games hold between 460 and 760px of content, so a card
|
|
34
|
+
stretched across the whole hero is mostly empty on the right. Wide
|
|
35
|
+
enough for the widest board, and no wider. */
|
|
36
|
+
max-width: 820px;
|
|
34
37
|
}
|
|
35
38
|
.game:empty { display: none; }
|
|
36
39
|
|