Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2021-08-30 21:51:52 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2021-08-30 21:51:52 +0300
commitaa9048fdf6364a77708f5ba75abb42647fb06329 (patch)
tree67f782c93ae1644b2ab389d2a1ef312dac3ace63 /src
parent350c6606103e7e108983dc308a60efd87445e746 (diff)
Fix unneeded top margin in Files sidebar chat
This reverts commit 81d76dde09a89a68b113a0288583c964d13b8758. The changes were needed due to the chat view having an absolute position. Since Talk 12 that is no longer the case, so these changes just caused an unneeded margin. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'src')
-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;
}