mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2024-11-09 10:13:42 +00:00
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>
|
<img :src="nsfwImage"></img>
|
||||||
</a>
|
</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>
|
<video v-if="type === 'webm' && !nsfw" :src="attachment.url" controls></video>
|
||||||
|
|
||||||
|
@ -29,5 +29,16 @@
|
||||||
video {
|
video {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a.image-attachment {
|
||||||
|
display: flex;
|
||||||
|
flex: 1;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -60,4 +60,8 @@
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.status-actions {
|
||||||
|
padding-top: 5px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue