Skip to content

Commit

Permalink
disable scrollbar display
Browse files Browse the repository at this point in the history
  • Loading branch information
Toubat committed Nov 23, 2021
1 parent e7c889b commit 747c33b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Binary file modified .DS_Store
Binary file not shown.
8 changes: 6 additions & 2 deletions frontend/src/components/WorkspaceNoteList.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<v-list class="fill-height listBackground" width="240">
<v-list class="fill-height listBackground workspace-note-list" width="240">
<WorkspaceHeadline icon="description" title="notebook" />
<v-text-field
v-model="search"
Expand Down Expand Up @@ -65,4 +65,8 @@ export default {
};
</script>

<style></style>
<style>
.workspace-note-list::-webkit-scrollbar {
display: none;
}
</style>

0 comments on commit 747c33b

Please sign in to comment.