Skip to content

Commit

Permalink
teams: better members view (fixes #7334) (#7335)
Browse files Browse the repository at this point in the history
Co-authored-by: dogi <[email protected]>
  • Loading branch information
Mutugiii and dogi committed Nov 22, 2023
1 parent d2aee7e commit 32b4285
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "planet",
"license": "AGPL-3.0",
"version": "0.13.80",
"version": "0.13.81",
"myplanet": {
"latest": "v0.11.53",
"min": "v0.11.28"
"latest": "v0.11.55",
"min": "v0.11.30"
},
"scripts": {
"ng": "ng",
Expand Down
2 changes: 1 addition & 1 deletion src/app/community/community.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ planet-calendar {
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
grid-template-rows: repeat(auto-fill, 125px);
grid-auto-rows: 125px;
margin: 0 0.5rem;
.top-right-icon {
position: absolute;
Expand Down
4 changes: 2 additions & 2 deletions src/app/teams/teams-view.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
grid-template-rows: repeat(auto-fill, 180px);
grid-auto-rows: 180px;
&.member-cards {
grid-template-rows: repeat(auto-fill, 280px);
grid-auto-rows: 280px;
mat-card-content {
max-height: 149px;
}
Expand Down

0 comments on commit 32b4285

Please sign in to comment.