forked from Mirrors/elk
fix: prevent videos from clipping when in fullscreen mode (#1397)
Co-authored-by: Tomasz Rymkiewicz <kreha1@pm.me>
This commit is contained in:
parent
2128d11238
commit
36191c500f
2 changed files with 4 additions and 0 deletions
|
@ -104,6 +104,7 @@ const userSettings = useUserSettings()
|
||||||
controls
|
controls
|
||||||
rounded-lg
|
rounded-lg
|
||||||
object-cover
|
object-cover
|
||||||
|
fullscreen:object-contain
|
||||||
:width="attachment.meta?.original?.width"
|
:width="attachment.meta?.original?.width"
|
||||||
:height="attachment.meta?.original?.height"
|
:height="attachment.meta?.original?.height"
|
||||||
:style="{
|
:style="{
|
||||||
|
|
|
@ -9,6 +9,8 @@ import {
|
||||||
transformerVariantGroup,
|
transformerVariantGroup,
|
||||||
} from 'unocss'
|
} from 'unocss'
|
||||||
|
|
||||||
|
import { variantParentMatcher } from '@unocss/preset-mini/utils'
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
shortcuts: [
|
shortcuts: [
|
||||||
{
|
{
|
||||||
|
@ -119,6 +121,7 @@ export default defineConfig({
|
||||||
layer: 'native-mac',
|
layer: 'native-mac',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
variantParentMatcher('fullscreen', '@media (display-mode: fullscreen)'),
|
||||||
],
|
],
|
||||||
rules: [
|
rules: [
|
||||||
// scrollbar-hide
|
// scrollbar-hide
|
||||||
|
|
Loading…
Reference in a new issue