forked from AkkomaGang/akkoma-fe
Login form, post status form, status css fixes.
This commit is contained in:
parent
f0f5d8c913
commit
c9ab70db8e
3 changed files with 8 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="panel panel-default">
|
||||
<div class="login panel panel-default">
|
||||
<!-- Default panel contents -->
|
||||
<div class="panel-heading">
|
||||
Log in
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script src="./post_status_form.js"></script>
|
||||
|
||||
<style lang="scss">
|
||||
.post-status-form {
|
||||
.post-status-form, .login {
|
||||
.form-bottom {
|
||||
display: flex;
|
||||
padding: 0.5em;
|
||||
|
|
|
@ -23,9 +23,7 @@
|
|||
<small>{{status.created_at_parsed}}</small>
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
<div v-html="status.statusnet_html"></div>
|
||||
</p>
|
||||
<div class="status-content" v-html="status.statusnet_html"></div>
|
||||
|
||||
<div v-if='status.attachments' class='attachments'>
|
||||
<attachment :status-id="status.id" :nsfw="status.nsfw" :attachment="attachment" v-for="attachment in status.attachments">
|
||||
|
@ -65,6 +63,11 @@
|
|||
display: inline-block;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.status-content {
|
||||
margin-top: 3px;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
}
|
||||
|
||||
.status-actions {
|
||||
|
|
Loading…
Reference in a new issue