fix new post button not working day1, minor stylistic fixes
This commit is contained in:
parent
0f28c28760
commit
3e1b40ce29
6 changed files with 26 additions and 2 deletions
|
@ -91,6 +91,7 @@ const Chat = {
|
|||
...mapState({
|
||||
backendInteractor: state => state.api.backendInteractor,
|
||||
mastoUserSocketStatus: state => state.api.mastoUserSocketStatus,
|
||||
mobileLayout: state => state.interface.layoutType === 'mobile',
|
||||
currentUser: state => state.users.currentUser
|
||||
})
|
||||
},
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
.chat-view {
|
||||
display: flex;
|
||||
height: 100%;
|
||||
// Stick the form to the top/bottom of screen
|
||||
margin-bottom: calc(var(--___columnMargin) / -2);
|
||||
margin-top: calc(var(--___columnMargin) / -2);
|
||||
|
||||
.chat-view-inner {
|
||||
height: auto;
|
||||
|
|
|
@ -45,7 +45,7 @@ const MobilePostStatusButton = {
|
|||
return this.autohideFloatingPostButton && (this.hidden || this.inputActive)
|
||||
},
|
||||
isPersistent () {
|
||||
return !!this.$store.getters.mergedConfig.showNewPostButton
|
||||
return !!this.$store.getters.mergedConfig.alwaysShowNewPostButton
|
||||
},
|
||||
autohideFloatingPostButton () {
|
||||
return !!this.$store.getters.mergedConfig.autohideFloatingPostButton
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue