diff --git a/components/ProfilerPage/ProfilerPage.vue b/components/ProfilerPage/ProfilerPage.vue index 3e1b9f51..2f8f4e94 100644 --- a/components/ProfilerPage/ProfilerPage.vue +++ b/components/ProfilerPage/ProfilerPage.vue @@ -3,7 +3,7 @@
- + @@ -134,7 +135,11 @@ export default defineComponent({ @import "assets/mixins"; .profiler-page-call-graph { - @apply relative flex rounded border border-gray-900 min-h-min min-w-min; + @apply relative flex rounded border border-gray-900 min-h-min min-w-min h-full; +} + +.profiler-page-call-graph__graph { + @apply w-full h-full flex; } .profiler-page-call-graph--fullscreen { diff --git a/components/RenderGraph/RenderGraph.vue b/components/RenderGraph/RenderGraph.vue index 442531e7..9fefe104 100644 --- a/components/RenderGraph/RenderGraph.vue +++ b/components/RenderGraph/RenderGraph.vue @@ -88,6 +88,7 @@ export default defineComponent({ mounted() { const cy: Cytoscape = cytoscape({ container: this.$refs.renderer as HTMLElement, + wheelSensitivity: 0.4, elements: this.elements, layout: { name: "dagre",