Skip to content

Commit 33cf740

Browse files
committed
fix(admin): remove unnecessary scroll bar
* In create vo dialog was unnecessary scroll bar which has been removed.
1 parent 865be32 commit 33cf740

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.mat-dialog-content {
2+
height: auto;
3+
@media (min-width: 421px) and (max-width: 755px) {
4+
height: 150px;
5+
}
6+
@media (max-width: 420px) {
7+
height: 175px;
8+
}
9+
}

apps/admin-gui/src/app/vos/pages/vo-select-page/vo-select-page.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class VoSelectPageComponent implements OnInit, AfterViewChecked{
8383

8484
onCreateVo() {
8585
const config = getDefaultDialogConfig();
86-
config.width = '600px';
86+
config.width = '610px';
8787
config.data = { theme: 'vo-theme'};
8888

8989
const dialogRef = this.dialog.open(CreateVoDialogComponent, config);

0 commit comments

Comments
 (0)