Skip to content

Commit 46894d0

Browse files
committed
Fixed a problem where the scroll bar wasn't being shown in the people search details dialog.
1 parent ffb1e53 commit 46894d0

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

client/src/modules/peoplesearch/person-details-dialog.component.scss

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,29 @@
3636
}
3737

3838
.person-details-dialog {
39+
display: flex;
40+
align-items: center;
41+
justify-content: center;
3942
text-align: left;
4043
overflow: hidden;
4144

4245
.ias-dialog-container {
46+
display: flex;
47+
margin: 0;
4348
padding: 0;
49+
position: relative;
50+
top: auto;
51+
transform: none;
52+
53+
> .ias-dialog-content {
54+
display: grid;
55+
grid-template-rows: max-content 1fr;
56+
flex-grow: 1;
57+
58+
> .person-details-content {
59+
overflow: auto;
60+
}
61+
}
4462
}
4563

4664
.ias-avatar {

0 commit comments

Comments
 (0)