Remove rounded corners in fullscreen log view (#5879)

Co-authored-by: Anbraten <6918444+anbraten@users.noreply.github.com>
This commit is contained in:
Robert Kaussow
2025-12-18 12:16:50 +01:00
committed by GitHub
parent b0ae3c0582
commit cdfd0d54db

View File

@@ -7,7 +7,10 @@
}"
>
<div
class="code-box-log flex grow flex-col overflow-hidden p-0! md:mt-0 md:rounded-md!"
class="code-box-log flex grow flex-col overflow-hidden p-0! md:mt-0"
:class="{
'md:rounded-md!': !fullscreen,
}"
@mouseover="showActions = true"
@mouseleave="showActions = false"
>
@@ -75,7 +78,7 @@
</a>
<!-- eslint-disable vue/no-v-html -->
<span
class="align-top break-words whitespace-pre-wrap"
class="wrap-break-words align-top whitespace-pre-wrap"
:class="{
'bg-red-600/40 dark:bg-red-800/50': line.type === 'error',
'bg-yellow-600/40 dark:bg-yellow-800/50': line.type === 'warning',