Showing
1 changed file
with
8 additions
and
1 deletions
| @@ -20,8 +20,15 @@ export struct CommentListDialogView { | @@ -20,8 +20,15 @@ export struct CommentListDialogView { | ||
| 20 | onClose?: () => void | 20 | onClose?: () => void |
| 21 | onHeightDidChange?: Callback<number> | 21 | onHeightDidChange?: Callback<number> |
| 22 | 22 | ||
| 23 | + @StorageProp('currentBreakpoint') currentBreakpoint: string = 'sm'; | ||
| 24 | + @State isPad:boolean = this.currentBreakpoint == "md" || this.currentBreakpoint == "lg"?true:false | ||
| 25 | + | ||
| 23 | aboutToAppear(): void { | 26 | aboutToAppear(): void { |
| 24 | - this.maxHeight = this.windowHeight - this.windowWidth * 9 / 16 | 27 | + if (this.isPad) { |
| 28 | + this.maxHeight = this.windowHeight * 0.6 | ||
| 29 | + }else { | ||
| 30 | + this.maxHeight = this.windowHeight - this.windowWidth * 9 / 16 | ||
| 31 | + } | ||
| 25 | } | 32 | } |
| 26 | 33 | ||
| 27 | build() { | 34 | build() { |
-
Please register or login to post a comment