Skip to content

Commit

Permalink
fix: hides stats when columns are too narrow. (#3452)
Browse files Browse the repository at this point in the history
  • Loading branch information
amir20 authored Dec 12, 2024
2 parents 2081335 + 9b0e731 commit 289fc66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/components/ContainerViewer/ContainerLog.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<template>
<ScrollableView :scrollable="scrollable" v-if="container">
<template #header v-if="showTitle">
<div class="mx-2 flex items-center gap-2 md:ml-4">
<div class="mx-2 flex items-center gap-2 @container md:ml-4">
<ContainerTitle :container="container" />
<MultiContainerStat class="ml-auto" :containers="[container]" />
<MultiContainerStat class="ml-auto hidden @3xl:flex" :containers="[container]" />

<ContainerActionsToolbar @clear="viewer?.clear()" class="mobile-hidden" :container="container" />
<a class="btn btn-circle btn-xs" @click="close()" v-if="closable">
Expand Down

0 comments on commit 289fc66

Please sign in to comment.