Skip to content

Commit 561298b

Browse files
fix: improvements from recordings 13.3.2025
1 parent b5863a8 commit 561298b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3177,17 +3177,17 @@ Reorganizing content based on its importance and relevance to users can help ens
31773177

31783178
```css
31793179
@media screen and (max-width: 768px) {
3180-
.menu {
3181-
display: none; /* Hide navigation menu on small screens */
3182-
}
3180+
.menu {
3181+
display: none; /* Hide navigation menu on small screens */
3182+
}
31833183
}
31843184
```
31853185

31863186
[![Edit 080-Content Reorganization](images/codesandbox.svg)](https://codesandbox.io/p/sandbox/080-content-reorganization-xr6npx)
31873187

31883188
[^80]CodeSandbox: Content Reorganization.
31893189

3190-
[^80]:[CodeSandbox: Content Reorganization](https://xr6npx.csb.app/), last access: June 25, 2024.
3190+
[^80]:[CodeSandbox: Content Reorganization](https://xr6npx.csb.app/), last access: March 13, 2025.
31913191

31923192
- In this example, the navigation menu is hidden on small screens using a media query (`@media screen and (max-width: 768px)`).
31933193
- By hiding the navigation menu on small screens, more space is allocated for displaying the main content, ensuring a focused and streamlined user experience.

__presentation-slides/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2051,9 +2051,9 @@ <h1>Main Heading</h1>
20512051

20522052
```css[|2,4|1,5|3]
20532053
@media screen and (max-width: 768px) {
2054-
.menu {
2055-
display: none; /* Hide navigation menu on small screens */
2056-
}
2054+
.menu {
2055+
display: none; /* Hide navigation menu on small screens */
2056+
}
20572057
}
20582058
```
20592059

0 commit comments

Comments
 (0)