Skip to content

Commit

Permalink
Fix the layout of the history run page
Browse files Browse the repository at this point in the history
  • Loading branch information
TaiSakuma committed Mar 26, 2024
1 parent 98d8dc3 commit 90e1a54
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/History/RunCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ watch(
display: grid;
height: 100%;
grid-template-columns: minmax(100px, 1fr);
grid-template-rows: min-content max-content minmax(min-content, 1fr);
/* grid-template-rows: min-content max-content minmax(min-content, 1fr) min-content; */
grid-template-rows: min-content max-content min-content min-content;
grid-template-areas: "head" "exception" "script" "stdout";
}
Expand Down

0 comments on commit 90e1a54

Please sign in to comment.