summaryrefslogtreecommitdiffstats
path: root/src/components/LeftSidebar/SearchBox/SearchBox.vue
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-09-01 16:22:21 +0200
committerJoas Schilling <coding@schilljs.com>2022-09-01 16:22:21 +0200
commit7ef2bba802f00a85e5035e674d66ab7a0d60be77 (patch)
treee0db0ed14e7cbd720899b0ae25da00afd8b5e901 /src/components/LeftSidebar/SearchBox/SearchBox.vue
parent55a94d11b70b7656b110c70283adadcca1b4347e (diff)
Fix black corners on "Search conversation" form
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/components/LeftSidebar/SearchBox/SearchBox.vue')
-rw-r--r--src/components/LeftSidebar/SearchBox/SearchBox.vue18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/components/LeftSidebar/SearchBox/SearchBox.vue b/src/components/LeftSidebar/SearchBox/SearchBox.vue
index c2b164b88..3bb304217 100644
--- a/src/components/LeftSidebar/SearchBox/SearchBox.vue
+++ b/src/components/LeftSidebar/SearchBox/SearchBox.vue
@@ -20,8 +20,7 @@
-->
<template>
- <form class="app-navigation-search"
- @submit.prevent="handleSubmit">
+ <form @submit.prevent="handleSubmit">
<NcTextField ref="searchConversations"
:value.sync="localValue"
:placeholder="placeholderText"
@@ -126,18 +125,3 @@ export default {
},
}
</script>
-
-<style lang="scss" scoped>
-@import '../../../assets/variables';
-
-.app-navigation-search {
- position: sticky;
- top: 0;
- background-color: var(--color-main-background);
- z-index: 1;
- display: flex;
- justify-content: center;
- flex-grow: 1;
-}
-
-</style>