Skip to content

Commit 5974149

Browse files
committed
fixed all the spelling mistakes
1 parent d9ea220 commit 5974149

File tree

5 files changed

+5
-5
lines changed
  • exercises
    • 02.mobile-first
      • 01.problem.structural-layout/src
      • 01.solution.structural-layout/src
      • 02.problem.text-styles/src
    • 06.animation/02.problem.responsive-animations/src
    • 07.subgrid-alignment/01.problem.sub-grid/src

5 files changed

+5
-5
lines changed

exercises/02.mobile-first/01.problem.structural-layout/src/App.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default function App() {
99
The first one is the full-page container. It needs to:
1010
- have at minimum the full screen height (min-h-screen)
1111
- centers its children with a grid (grid place-items-center)
12-
- handle horizontal and verticall padding (see Figma)
12+
- handle horizontal and vertical padding (see Figma)
1313
*/}
1414

1515
{/*

exercises/02.mobile-first/01.solution.structural-layout/src/App.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default function App() {
1111
</h1>
1212
<p>
1313
Check the <a href="#">Getting Started</a> guide file for how to get
14-
your project off the ground!
14+
your prodject off the ground!
1515
</p>
1616
</div>
1717
<ul>

exercises/02.mobile-first/02.problem.text-styles/src/App.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default function App() {
88
🐨
99
Set a max-width of 'md' on the wrapping div below.
1010
Center the elements horizontally:
11-
- Setup a veritcal flexbox container with 'flex flex-col'
11+
- Setup a vertical flexbox container with 'flex flex-col'
1212
- Align the items horizontally with 'items-center'
1313
- Center the children text elements with 'text-center'
1414
*/}

exercises/06.animation/02.problem.responsive-animations/src/App.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default function App() {
2727
<div className="flex max-w-md flex-col items-center text-center xl:order-2 xl:items-start xl:text-left">
2828
<EpicStackLogo
2929
/*
30-
👩‍🔬 I've used clsx() here purely for organisation purposes.
30+
👩‍🔬 I've used clsx() here purely for organistion purposes.
3131
I've separated the animation classes so it's a little
3232
easier to distinguish styling concerns.
3333

exercises/07.subgrid-alignment/01.problem.sub-grid/src/App.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export default function App() {
7272
2. Span the grid across 6 rows
7373
7474
💰 You can define grid-template-rows as a `subgrid` with `grid-rows-subgrid`
75-
💰 You can span an element acorss multiple rows with the `row-span-*` utilities
75+
💰 You can span an element across multiple rows with the `row-span-*` utilities
7676
*/}
7777
<ul className="flex max-w-3xl flex-wrap justify-center gap-2 sm:gap-4 xl:grid xl:grid-flow-col xl:grid-cols-5 xl:grid-rows-6">
7878
{logos.map((logo, i) => (

0 commit comments

Comments
 (0)