0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-10 08:50:57 -05:00

🐛 User icons are not centered

This commit is contained in:
Eva 2023-01-26 08:40:26 +01:00 committed by Alonso Torres
parent 9cc3cceb06
commit 7cd6f5ba70

View file

@ -15,7 +15,7 @@
display: grid;
grid-template-areas: "left center right";
grid-template-columns: auto 1fr auto;
grid-template-columns: 1fr auto 1fr;
grid-template-rows: 100%;
padding: 0;
@ -32,6 +32,7 @@
.right-area {
grid-area: right;
display: flex;
justify-content: flex-end;
height: 100%;
}