Skip to content

Commit

Permalink
update @media query
Browse files Browse the repository at this point in the history
  • Loading branch information
easylogic committed Oct 4, 2022
1 parent 801ab61 commit bf34f6f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,32 @@ import Layout from '../layouts/Layout.astro';
text-decoration: none;
margin: 0 20px;
}

@media (max-width: 400px) {
.instructions {
font-size: 1.5rem;
}

.community {
bottom: 50px;
}

.community a {
margin: 0 10px;
}
}

@media (max-width: 600px) {
.instructions {
font-size: 1.5rem;
}

.community {
bottom: 50px;
}

.community a {
margin: 0 10px;
}
}
</style>

0 comments on commit bf34f6f

Please sign in to comment.