File tree Expand file tree Collapse file tree 1 file changed +19
-2
lines changed
site/frontend/src/pages/status Expand file tree Collapse file tree 1 file changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -428,6 +428,9 @@ loadStatus(loading);
428
428
429
429
<style scoped lang="scss">
430
430
.timeline {
431
+ max-width : 100% ;
432
+ width : fit-content ;
433
+
431
434
table {
432
435
border-collapse : collapse ;
433
436
font-size : 1.1em ;
@@ -455,13 +458,24 @@ loadStatus(loading);
455
458
font-weight : bold ;
456
459
}
457
460
}
461
+
462
+ @media screen and (min-width : 1440px ) {
463
+ width : 100% ;
464
+ }
458
465
}
459
466
.wrapper {
460
- display : flex ;
461
- flex-wrap : wrap ;
467
+ display : grid ;
462
468
column-gap : 100px ;
469
+ grid-template-columns : 1fr ;
470
+
471
+ @media screen and (min-width : 1440px ) {
472
+ grid-template-columns : 4fr 6fr ;
473
+ }
463
474
}
464
475
.current {
476
+ max-width : 100% ;
477
+ width : fit-content ;
478
+
465
479
.benchmark {
466
480
margin-bottom : 10px ;
467
481
font-size : 1.2em ;
@@ -493,5 +507,8 @@ loadStatus(loading);
493
507
.error {
494
508
padding : 10px ;
495
509
background-color : #f7f7f7 ;
510
+ max-width : 100% ;
511
+ white-space : pre-wrap ;
512
+ word-break : break-word ;
496
513
}
497
514
</style >
You can’t perform that action at this time.
0 commit comments