CSS fixes for attachments in status posts.

This commit is contained in:
Roger Braun 2016-11-12 21:05:01 +01:00
parent 4d6d916395
commit f0f5d8c913
2 changed files with 30 additions and 21 deletions

View File

@ -41,18 +41,6 @@ a {
padding: 0 10px 0 10px;
}
form {
display: flex;
flex-direction: column;
padding: 0.5em;
}
.form-group {
display: flex;
flex-direction: column;
padding: 0.5em;
}
.gaps {
margin: -1em 0 0 -1em;
}
@ -257,15 +245,6 @@ attention {
color: $main-color;
}
.form-bottom {
display: flex;
padding: 0.5em;
button {
flex: 2;
}
}
.status-el {
line-height: 18px;

View File

@ -18,3 +18,33 @@
</template>
<script src="./post_status_form.js"></script>
<style lang="scss">
.post-status-form {
.form-bottom {
display: flex;
padding: 0.5em;
button {
flex: 2;
}
}
.attachments {
padding: 0.5em;
}
form {
display: flex;
flex-direction: column;
padding: 0.5em;
}
.form-group {
display: flex;
flex-direction: column;
padding: 0.5em;
}
}
</style>