fix(ui): horizontal overflow on application and service headings (#7970)

This commit is contained in:
Mailo
2026-01-19 19:27:19 +01:00
committed by GitHub
parent da53504282
commit 3a60561a34
6 changed files with 18 additions and 8 deletions

View File

@@ -96,7 +96,17 @@ body {
}
body {
@apply min-h-screen text-sm antialiased scrollbar;
@apply min-h-screen text-sm antialiased scrollbar overflow-x-hidden;
}
.coolify-monaco-editor {
@apply min-w-0 w-full;
overflow-x: hidden;
}
.coolify-monaco-editor .monaco-editor,
.coolify-monaco-editor .overflow-guard {
max-width: 100%;
}
option {
@@ -196,4 +206,4 @@ section {
.dark .log-highlight {
background-color: rgba(234, 179, 8, 0.3);
}
}