Skip to content

Commit c5c01dd

Browse files
authored
1 parent 2f69098 commit c5c01dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/src/components/repo/pipeline/PipelineLog.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<div
4141
v-show="hasLogs && loadedLogs"
4242
ref="consoleElement"
43-
class="w-full max-w-full grid grid-cols-[min-content,1fr,min-content] p-4 auto-rows-min flex-grow overflow-x-hidden overflow-y-auto"
43+
class="w-full max-w-full grid grid-cols-[min-content,minmax(0,1fr),min-content] p-4 auto-rows-min flex-grow overflow-x-hidden overflow-y-auto text-xs md:text-sm"
4444
>
4545
<div v-for="line in log" :key="line.index" class="contents font-mono">
4646
<a
@@ -57,7 +57,7 @@
5757
>
5858
<!-- eslint-disable vue/no-v-html -->
5959
<span
60-
class="align-top whitespace-pre-wrap break-words text-sm"
60+
class="align-top whitespace-pre-wrap break-words"
6161
:class="{
6262
'bg-opacity-40 dark:bg-opacity-50 bg-10.168.64.121-600 dark:bg-red-800': line.type === 'error',
6363
'bg-opacity-40 dark:bg-opacity-50 bg-yellow-600 dark:bg-yellow-800': line.type === 'warning',

0 commit comments

Comments
 (0)