Skip to content

Commit

Permalink
chore(viz): hide unnecessary scrollbars
Browse files Browse the repository at this point in the history
  • Loading branch information
zhudotexe committed Jul 31, 2024
1 parent 4fd88f0 commit d3bc025
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion viz/src/components/ChatMessages.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ defineExpose({ scrollChatToBottom });

<style scoped>
.messages {
overflow: scroll;
overflow-y: auto;
}
.chat-message {
Expand Down
2 changes: 1 addition & 1 deletion viz/src/views/Interactive.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,6 @@ onUnmounted(() => client.close());
.introspection-container {
padding: 0 2rem;
min-height: 0;
overflow: scroll;
overflow-y: auto;
}
</style>
2 changes: 1 addition & 1 deletion viz/src/views/SaveViewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ onMounted(async () => {
.introspection-container {
padding: 0 2rem;
min-height: 0;
overflow: scroll;
overflow-y: auto;
}

///// replay controls /////
Expand Down

0 comments on commit d3bc025

Please sign in to comment.