Skip to content

Commit

Permalink
made border smaller when viewing on small devices
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin-771 authored May 25, 2024
1 parent e86bd3b commit 1777263
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion docs/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,17 @@ nav a:hover {
}

.container {
padding: 20px 100px;
padding-left: 20%;
padding-right: 20%;
}

@media only screen and (max-width: 600px) {
.container {
padding-left: 10%;
padding-right: 10%;
}
}

.gallery img {
width: 100%;
height: auto;
Expand Down

0 comments on commit 1777263

Please sign in to comment.