Skip to content

Commit 1e43daf

Browse files
authored
Merge pull request #1832 from s7tya/fix-status-page-layout
Fix status page layout
2 parents e02ac58 + efdc70d commit 1e43daf

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

site/frontend/src/pages/status/page.vue

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,9 @@ loadStatus(loading);
428428

429429
<style scoped lang="scss">
430430
.timeline {
431+
max-width: 100%;
432+
width: fit-content;
433+
431434
table {
432435
border-collapse: collapse;
433436
font-size: 1.1em;
@@ -455,13 +458,24 @@ loadStatus(loading);
455458
font-weight: bold;
456459
}
457460
}
461+
462+
@media screen and (min-width: 1440px) {
463+
width: 100%;
464+
}
458465
}
459466
.wrapper {
460-
display: flex;
461-
flex-wrap: wrap;
467+
display: grid;
462468
column-gap: 100px;
469+
grid-template-columns: 1fr;
470+
471+
@media screen and (min-width: 1440px) {
472+
grid-template-columns: 4fr 6fr;
473+
}
463474
}
464475
.current {
476+
max-width: 100%;
477+
width: fit-content;
478+
465479
.benchmark {
466480
margin-bottom: 10px;
467481
font-size: 1.2em;
@@ -493,5 +507,8 @@ loadStatus(loading);
493507
.error {
494508
padding: 10px;
495509
background-color: #f7f7f7;
510+
max-width: 100%;
511+
white-space: pre-wrap;
512+
word-break: break-word;
496513
}
497514
</style>

0 commit comments

Comments
 (0)