Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed mobile responsiveness #264

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion specimen/contexts/program-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ <h3><a href="#">Copyright</a></h3>
</article>
</li>
<li>
<article class="project"e>
<article class="project">
<h3><a href="#">Better Internet</a></h3>
<p>Find out more about this thing, read more today.</p>
</article>
Expand Down
6 changes: 5 additions & 1 deletion src/css/vocabulary.css
Original file line number Diff line number Diff line change
Expand Up @@ -1773,7 +1773,7 @@ body > footer .license svg {

.program-index main > article.projects ul {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr;
gap: 2em;
margin: 0;
padding: 0;
Expand Down Expand Up @@ -1830,6 +1830,10 @@ body > footer .license svg {
display: flex;
flex-wrap: wrap;
}
main article.posts.related ul {
display: flex;
flex-wrap: wrap;
}
}

@media (max-width: 705px) {
Expand Down