Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function toggleShowType() {
<template>
<div class="p2 h-full w-full">
<div class="flex border border-base rounded-2 h-full relative of-hidden">
<div v-if="expanded" class="of-hidden border-r border-base shrink-0">
<div v-if="expanded" class="of-hidden border-r border-base shrink-0 h-full min-h-0 flex flex-col">
<FlowmapPluginFlowTimeline
:session="session"
:build-metrics="buildMetrics"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ const endTime = computed(() => {
</script>

<template>
<div class="flex flex-col">
<div class="flex flex-col h-full min-h-0">
<slot name="header" />
<div class="select-none h-full of-auto ws-nowrap w-auto of-visible p4 flex flex-col">
<div class="select-none flex-1 min-h-0 of-x-hidden of-y-auto ws-nowrap w-auto p4 flex flex-col" style="scrollbar-gutter: stable">
<div class="flex">
<FlowmapNode
:active="false"
Expand Down
2 changes: 1 addition & 1 deletion packages/vite/src/app/components/flowmap/PluginFlow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ function toggleShowType() {
<template>
<div class="p2 h-full w-full">
<div class="flex border border-base rounded-2 h-full relative of-hidden">
<div v-if="expanded" class="of-hidden border-r border-base shrink-0">
<div v-if="expanded" class="of-hidden border-r border-base shrink-0 h-full min-h-0 flex flex-col">
<FlowmapPluginFlowTimeline
:build-metrics="buildMetrics"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ const endTime = computed(() => {
</script>

<template>
<div class="flex flex-col">
<div class="flex flex-col h-full min-h-0">
<slot name="header" />
<div class="select-none h-full of-auto ws-nowrap w-auto of-visible p4 flex flex-col">
<div class="select-none flex-1 min-h-0 of-x-hidden of-y-auto ws-nowrap w-auto p4 flex flex-col" style="scrollbar-gutter: stable">
<div class="flex">
<FlowmapNode
:active="false"
Expand Down
Loading