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:
authorMarco Ambrosini <marcoambrosini@icloud.com>2022-07-26 19:10:37 +0300
committerMarco Ambrosini <marcoambrosini@icloud.com>2022-07-26 19:10:37 +0300
commit7670b5ffee81a78290a4599e0b3f80cb1f3e809a (patch)
tree1fd3f57dd0f37fc309e5b2ae00a40282d892cc15 /src
parent13a4fd32b77912f43d9c04995dc942062e5f40de (diff)
Bring back proper padding around the elementsbugfix/7566/div-not-allowed-inside-ul
Signed-off-by: Marco Ambrosini <marcoambrosini@icloud.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/LeftSidebar/LeftSidebar.vue4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/LeftSidebar/LeftSidebar.vue b/src/components/LeftSidebar/LeftSidebar.vue
index f4593f456..34f70b9d8 100644
--- a/src/components/LeftSidebar/LeftSidebar.vue
+++ b/src/components/LeftSidebar/LeftSidebar.vue
@@ -35,6 +35,7 @@
<template #list>
<li class="left-sidebar__list">
<ul ref="scroller"
+ class="scroller"
@scroll="debounceHandleScroll">
<AppNavigationCaption v-if="isSearching"
:title="t('spreed', 'Conversations')" />
@@ -507,6 +508,9 @@ export default {
<style lang="scss" scoped>
@import '../../assets/variables';
+.scroller {
+ padding: 0 4px 0 6px;
+}
.new-conversation {
display: flex;