fix(frontend): 子メニューの最大長調整が行われていない問題を修正 (#14003)
* fix(frontend): 子メニューの最大長調整が行われていない問題を修正 * Update Changelog * fix * changelog * Revert "fix" This reverts commit39fb326d49. * Revert "fix(frontend): 子メニューの最大長調整が行われていない問題を修正" This reverts commitea58bf7a53. * use css * maxHeightをchildから定義するように * use css min
This commit is contained in:
		| @@ -17,7 +17,7 @@ SPDX-License-Identifier: AGPL-3.0-only | ||||
| 		}" | ||||
| 		:style="{ | ||||
| 			width: (width && !asDrawer) ? `${width}px` : '', | ||||
| 			maxHeight: maxHeight ? `${maxHeight}px` : '', | ||||
| 			maxHeight: maxHeight ? `min(${maxHeight}px, calc(100dvh - 32px))` : 'calc(100dvh - 32px)', | ||||
| 		}" | ||||
| 		@keydown.stop="() => {}" | ||||
| 		@contextmenu.self.prevent="() => {}" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 かっこかり
					かっこかり