Skip to content

Commit

Permalink
Hide filter system for phone users
Browse files Browse the repository at this point in the history
  • Loading branch information
F12-Syntex committed Jul 24, 2024
1 parent 6719f6e commit 7666f2d
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions resources/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,23 @@ body.compare, body.timeline {
margin-left: -10px;
}

.project_container {
display: grid;
grid-template-columns: 20% 50% 50%;
}
@media (min-width: 577px) {
.project_container {
display: grid;
grid-template-columns: 20% 50% 50%;
}
}

@media (max-width: 576px) {
.links_card {
/* hidden */
display: none;
}
.project_container {
display: block;
}
}



#branchSearch{
Expand Down

0 comments on commit 7666f2d

Please sign in to comment.