This commit is contained in:
leejinho 2020-03-27 13:22:09 +09:00
commit 63fe2c3875
2 changed files with 6 additions and 9 deletions

View File

@ -1,13 +1,9 @@
.setting-frame { .setting-frame {
padding: 16px; padding: 16px;
height: 100%; height: calc(90vh - 40px);
width: 720px; width: 100%;
position: relative; position: relative;
.mat-dialog-container {
position: relative;
}
.mat-card-header { .mat-card-header {
position: relative; position: relative;
width: 100%; width: 100%;
@ -23,6 +19,7 @@
} }
} }
.mat-card-content { .mat-card-content {
position: relative;
flex: 0 0 auto; flex: 0 0 auto;
display: flex; display: flex;
align-items: flex-start; align-items: flex-start;

View File

@ -44,9 +44,9 @@ export class Effects {
MessengerSettingsDialogResult MessengerSettingsDialogResult
>(MessengerSettingsDialogComponent, { >(MessengerSettingsDialogComponent, {
width: '800px', width: '800px',
maxWidth: '800px', maxWidth: '94vw',
height: '800px', maxHeight: '90vh',
minHeight: '800px', minHeight: '500px',
disableClose: false, disableClose: false,
data: {} data: {}
}); });