Skip to content

Commit

Permalink
Update code-conventies.md
Browse files Browse the repository at this point in the history
  • Loading branch information
KrijnHoetmer authored Jan 14, 2025
1 parent d9aaf2d commit ad4fe4f
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions docs/code-conventies.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ ook eens hoe je _Container Queries_ in kunt zetten op deze manier.
body {
line-height: 1.5;
}
nav {
display: flex;
.navigation {
font-weight: bold;
}
footer {
text-align: right;
Expand All @@ -182,7 +182,8 @@ footer {
display: grid;
grid-template-columns: 1fr 1fr;
}
nav {
.navigation {
display: flex;
justify-content: space-between;
}
footer {
Expand All @@ -201,9 +202,12 @@ body {
grid-template-columns: 1fr 1fr;
}
}
nav {
display: flex;
.navigation {
font-weight: bold;

/* De navigatie mag al eerder naast elkaar */
@media (min-width: 26em) {
display: flex;
justify-content: space-between;
}
}
Expand Down Expand Up @@ -247,4 +251,4 @@ van je site, is je code iets overzichtelijker geworden, en heb je je eerste
_code refactor_ gedaan. Probeer volgende keer deze eerste paar conventies
vanaf het begin toe te passen op je code.

Sluit het issue door je code te pushen.
Sluit het issue door je code te pushen.

0 comments on commit ad4fe4f

Please sign in to comment.