diff --git a/src/components/attachment/attachment.js b/src/components/attachment/attachment.js index 163dd74f..d9bc4477 100644 --- a/src/components/attachment/attachment.js +++ b/src/components/attachment/attachment.js @@ -33,6 +33,9 @@ const Attachment = { }, isSmall () { return this.size === 'small' + }, + fullwidth () { + return fileTypeService.fileType(this.attachment.mimetype) === 'html' } }, methods: { diff --git a/src/components/attachment/attachment.vue b/src/components/attachment/attachment.vue index e2cc1ac0..b2f63668 100644 --- a/src/components/attachment/attachment.vue +++ b/src/components/attachment/attachment.vue @@ -2,7 +2,7 @@
[{{nsfw ? "NSFW/" : ""}}{{type.toUpperCase()}}]
-
+
@@ -71,6 +71,9 @@ border-color: var(--border, $fallback--border); overflow: hidden; } + .fullwidth { + flex-basis: 100%; + } // fixes small gap below video &.video { line-height: 0; @@ -117,6 +120,7 @@ .oembed { line-height: 1.2em; + flex: 1 0 100%; width: 100%; margin-right: 15px; display: flex;