forked from AkkomaGang/akkoma-fe
CSS fixes.
This commit is contained in:
parent
7980558461
commit
72877b5c06
2 changed files with 16 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
|||
<img :src="nsfwImage"></img>
|
||||
</a>
|
||||
|
||||
<a v-if="type === 'image' && !nsfw" :href="attachment.url" target="_blank"><img :src="attachment.url"></img></a>
|
||||
<a class="image-attachment" v-if="type === 'image' && !nsfw" :href="attachment.url" target="_blank"><img :src="attachment.url"></img></a>
|
||||
|
||||
<video v-if="type === 'webm' && !nsfw" :src="attachment.url" controls></video>
|
||||
|
||||
|
@ -29,5 +29,16 @@
|
|||
video {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
a.image-attachment {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
flex: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -60,4 +60,8 @@
|
|||
word-break: break-all;
|
||||
}
|
||||
}
|
||||
|
||||
.status-actions {
|
||||
padding-top: 5px;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue