Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Commit

Permalink
fix(static-files): 📱 Stop student list going off edge of screen
Browse files Browse the repository at this point in the history
Reduce the minimun grid size in the student list

Signed-off-by: Matthew Gray <[email protected]>
  • Loading branch information
mmoomocow committed May 18, 2023
1 parent a35205d commit 01f9ada
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion students/static/students/students.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.allStudents {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
grid-template-columns: repeat(auto-fill, minmax(250px, 2fr));
}

.student {
Expand Down
2 changes: 1 addition & 1 deletion students/static/students/students.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 01f9ada

Please sign in to comment.