Skip to content

Commit 002dbea

Browse files
authored
fix(#3347): Improve label styling in scrollable container resolve #3347 (#3411)
1 parent d41f3f1 commit 002dbea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

assets/components/LogViewer/LogAnalytics.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
class="textarea textarea-primary w-full font-mono text-lg"
1414
:class="{ 'textarea-error': error }"
1515
></textarea>
16-
<div class="label">
16+
<div class="label max-h-48 overflow-y-auto pr-2">
1717
<span class="label-text-alt text-error" v-if="error">{{ error }}</span>
1818
<span class="label-text-alt" v-else>
1919
Total {{ results.numRows }} records
20-
<template v-if="results.numRows > pageLimit">. Showing first {{ page.numRows }}.</template></span
21-
>
20+
<template v-if="results.numRows > pageLimit"> . Showing first {{ page.numRows }}. </template>
21+
</span>
2222
</div>
2323
</label>
2424
</section>

0 commit comments

Comments
 (0)