Skip to content

Commit

Permalink
fix(home): add 2 column grid for smaller screens
Browse files Browse the repository at this point in the history
  • Loading branch information
arsenijesavic authored Mar 22, 2023
2 parents 5c29d23 + 32427f5 commit fead212
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions src/pages/dho/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -388,25 +388,13 @@ q-page.page-dashboard
grid-template-areas "assignments badges members proposals new new"\
"support support how how new new"
@media (max-width: $breakpoint-lg-max)
grid-template-columns: repeat(4, 1fr) 2fr;
grid-template-rows: minmax(0, 1fr);
grid-template-areas "assignments badges members proposals new new"\
"support support how how new new"
@media (max-width: $breakpoint-md-max)
grid-template-columns: repeat(4, 1fr);
grid-template-rows: minmax(0, 1fr);
grid-template-areas "assignments badges members proposals"\
"new new new new"\
"support support how how"
@media (max-width: $breakpoint-xs-max)
grid-template-columns: repeat(2, 1fr);
grid-template-rows: minmax(0, 1fr);
grid-template-areas "assignments badges"\
"members proposals"\
"new new"\
"support support"\
"how how"
</style>

0 comments on commit fead212

Please sign in to comment.