Skip to content

Commit 49ec2ae

Browse files
Merge pull request #325 from microsoft/psl-bug-16187
fix: resolved multiple scrollbar issue
2 parents 773a704 + 14e94cd commit 49ec2ae

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/frontend/src/pages/chat/Chat.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ const modalStyles: IModalStyles = {
6565
minHeight: '40%',
6666
padding: '20px',
6767
backgroundColor: '#f3f2f1',
68-
borderRadius: '8px'
68+
borderRadius: '8px',
69+
overflowY: 'hidden'
6970
},
7071
root: undefined,
7172
scrollableContent: {
@@ -80,7 +81,7 @@ const modalStyles: IModalStyles = {
8081
const contentStyles = mergeStyleSets({
8182
iframe: {
8283
width: '100%',
83-
height: '500px',
84+
height: '55vh',
8485
border: 'none'
8586
},
8687
closeButton: {

0 commit comments

Comments
 (0)