Skip to content

Commit 32e3eaf

Browse files
committed
Fix website mobile layout
1 parent 84a1f20 commit 32e3eaf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

website/docs.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,8 @@ a[aria-current] {
244244

245245
@media (width < 600px) {
246246
body {
247-
grid-template-areas: "header" "nav" "main" "footer";
248-
grid-template-columns: 1fr;
247+
display: block;
248+
width: auto;
249249
}
250250

251251
nav {

website/pages/docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Getting Started
88

9-
Lightning CSS can be used as a library from JavaScript or Rust, or from a standalone CLI. It can also be wrapped as a plugin in other build tools, and it is the built into [Parcel](https://parceljs.org) out of the box.
9+
Lightning CSS can be used as a library from JavaScript or Rust, or from a standalone CLI. It can also be wrapped as a plugin in other build tools, and it is built into [Parcel](https://parceljs.org) out of the box.
1010

1111
## From Node
1212

website/synthwave.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pre[class*="language-"] {
1616
white-space: pre-wrap;
1717
word-spacing: normal;
1818
word-break: normal;
19-
word-wrap: normal;
19+
word-wrap: break-word;
2020
line-height: 1.5;
2121

2222
-moz-tab-size: 4;

0 commit comments

Comments
 (0)