Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
kvsc27 authored Jul 29, 2024
1 parent 6801864 commit e804f09
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion mobile-first-development/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ h3 {

.group {
display: flex;
flex-direction: row;
flex-direction: column;
margin-bottom: 100px;
}

Expand All @@ -36,3 +36,14 @@ h3 {
.item-double {
flex: 2;
}

/* Groups & Items (Desktop) */
@media all and (min-width: 800px) {
section,
h1 {
padding: 0 10%;
}
.group {
flex-direction: row;
}
}

0 comments on commit e804f09

Please sign in to comment.