Skip to content
Snippets Groups Projects
Commit 5322f90c authored by lain's avatar lain
Browse files

Merge branch 'fix/attachment-fixes' into 'develop'

Fix #38 and video CSS

Closes #38

See merge request !136
parents 26a8923a 0e716e3c
No related branches found
No related tags found
1 merge request!136Fix #38 and video CSS
Pipeline #
......@@ -11,7 +11,7 @@
<img class="base03-border" referrerpolicy="no-referrer" :src="attachment.large_thumb_url || attachment.url"/>
</a>
<video v-if="type === 'video' && !hidden" :src="attachment.url" controls loop></video>
<video class="base03" v-if="type === 'video' && !hidden" :src="attachment.url" controls loop></video>
<audio v-if="type === 'audio'" :src="attachment.url" controls></audio>
......@@ -59,6 +59,7 @@
}
video {
max-height: 500px;
height: 100%;
border: 1px solid;
border-radius: 5px;
......@@ -103,6 +104,7 @@
.text {
flex: 2;
margin: 8px;
word-break: break-all;
h1 {
font-size: 14px;
margin: 0px;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment