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);
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 >
You can’t perform that action at this time.
0 commit comments