Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b400688

Browse files
authoredOct 3, 2021
Misplaced width ellement added after solving
In the exercise Style.css, there was no width element added on the .card selector. it's only added in the solution, so I think the width element should be moved to under the solution line.
1 parent 6b8a836 commit b400688

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎flex/07-flex-layout-2/solution/solution.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ body {
2525
border: 1px solid #eee;
2626
box-shadow: 2px 4px 16px rgba(0,0,0,.06);
2727
border-radius: 4px;
28-
width: 300px;
2928
}
3029

3130
/* SOLUTION */
@@ -78,10 +77,11 @@ a {
7877
.card {
7978
padding: 16px;
8079
margin: 16px;
80+
width: 300px;
8181
}
8282

8383
.footer {
8484
display: flex;
8585
align-items: center;
8686
justify-content: center;
87-
}
87+
}

0 commit comments

Comments
 (0)
Failed to load comments.