summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco <marcoambrosini@pm.me>2021-08-31 11:20:52 +0200
committerGitHub <noreply@github.com>2021-08-31 11:20:52 +0200
commitdea570fe89ca6a6664380f7632c5ae80bcf9cc76 (patch)
treea3067007a168208eef17c766a8693489b2701ed7
parentbaed749d6f60fd327fd5325d7dc24d25c410f7b3 (diff)
parentaa9048fdf6364a77708f5ba75abb42647fb06329 (diff)
Merge pull request #6173 from nextcloud/fix-unneeded-top-margin-in-files-sidebar-chat
Fix unneeded top margin in Files sidebar chat
-rw-r--r--src/FilesSidebarTabApp.vue16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/FilesSidebarTabApp.vue b/src/FilesSidebarTabApp.vue
index 77ab24996..9e4c474a3 100644
--- a/src/FilesSidebarTabApp.vue
+++ b/src/FilesSidebarTabApp.vue
@@ -39,9 +39,7 @@
</button>
</div>
<template v-else>
- <div class="call-button-wrapper">
- <CallButton class="call-button" />
- </div>
+ <CallButton class="call-button" />
<ChatView />
<UploadEditor />
</template>
@@ -421,15 +419,7 @@ export default {
justify-content: center;
}
-.call-button-wrapper {
- width: 100%;
- background-color: var(--color-main-background);
- z-index: 1;
-}
-
.call-button {
- display: block;
-
/* Center button horizontally. */
margin-left: auto;
margin-right: auto;
@@ -438,10 +428,6 @@ export default {
margin-bottom: 10px;
}
-::v-deep .scroller {
- margin-top: 64px;
-}
-
.chatView {
overflow: hidden;
}