mirror of
https://github.com/penpot/penpot.git
synced 2025-02-22 14:57:01 -05:00
🐛 Fixes minor problems with team settings
This commit is contained in:
parent
34a9b852ef
commit
c2aa0b97ee
2 changed files with 6 additions and 2 deletions
|
@ -130,6 +130,7 @@
|
|||
|
||||
.label {
|
||||
font-size: 13px;
|
||||
color: $color-gray-30;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -56,7 +56,10 @@
|
|||
|
||||
[:header.dashboard-header
|
||||
[:div.dashboard-title
|
||||
[:h1 (t locale "labels.members")]]
|
||||
[:h1 (cond
|
||||
members-section? (t locale "labels.members")
|
||||
settings-section? (t locale "labels.settings")
|
||||
nil)]]
|
||||
[:nav
|
||||
[:ul
|
||||
[:li {:class (when members-section? "active")}
|
||||
|
@ -285,7 +288,7 @@
|
|||
[:div.label (t locale "dashboard.team-members")]
|
||||
[:div.owner
|
||||
[:span.icon [:img {:src (cfg/resolve-media-path (:photo-uri profile))}]]
|
||||
[:span.text (:fullname profile)]]
|
||||
[:span.text (str (:fullname profile) " (" (t locale "labels.owner") ")") ]]
|
||||
[:div.summary
|
||||
[:span.icon i/user]
|
||||
[:span.text (t locale "dashboard.num-of-members" (count members-map))]]]
|
||||
|
|
Loading…
Add table
Reference in a new issue