ui: allow wider media

This commit is contained in:
Anthony Fu 2022-12-14 10:53:22 +01:00
parent c53e986956
commit 1fd1af214d

View file

@ -30,7 +30,7 @@ const aspectRatio = computed(() => {
if (fullSize)
return rawAspectRatio.value
if (rawAspectRatio.value)
return clamp(rawAspectRatio.value, 0.8, 1.5)
return clamp(rawAspectRatio.value, 0.8, 2.5)
return undefined
})