Skip to content

Commit

Permalink
Align the icon with subsequent items in profile view (SEA-1323).
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrillkuettel committed Jun 13, 2024
1 parent 87a6912 commit 838cdde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/privatim/static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,6 @@ body {
}

.profile-section {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
Expand Down
4 changes: 2 additions & 2 deletions src/privatim/views/templates/activities.pt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<div tal:repeat="activity activities" class="mt-4">

<div class="card d-flex flex-row activity-card-wrapper">
<div class="profile-section">
<div class="profile-section m-3">
<img src="${layout.static_url('privatim:static/default_profile_icon.png')}"
class="rounded-circle m-3 profile-icon" alt="Profile Icon">
<tal:b tal:switch="activity.__class__.__name__">
Expand Down Expand Up @@ -63,7 +63,7 @@
</ul>
</tal:b>
<a href="${request.route_url('meeting', id=activity.id)}" i18n:translate=""
class="details-link justify-content-end">Show Details</a>
class="details-link justify-content-end">Show Meeting</a>
</div>
</tal:b>

Expand Down

0 comments on commit 838cdde

Please sign in to comment.