Skip to content

Commit c80639b

Browse files
committed
fix: repair review flow layout
1 parent 55527a4 commit c80639b

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

src/app/globals.css

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -710,8 +710,9 @@ h1 {
710710
border-radius: 8px;
711711
counter-increment: review-step;
712712
display: grid;
713-
gap: 4px;
714-
grid-template-columns: 34px 1fr;
713+
column-gap: 10px;
714+
grid-template-columns: 34px minmax(0, 1fr);
715+
row-gap: 4px;
715716
padding: 12px;
716717
}
717718

@@ -725,19 +726,24 @@ h1 {
725726
font-family: var(--mono);
726727
font-size: 12px;
727728
font-weight: 800;
729+
grid-row: 1 / span 2;
728730
height: 26px;
729731
justify-items: center;
730732
width: 26px;
731733
}
732734

733735
.review-flow strong {
734736
font-size: 14px;
737+
grid-column: 2;
738+
line-height: 1.45;
735739
}
736740

737741
.review-flow span {
738742
color: var(--text-soft);
739743
font-size: 13px;
744+
grid-column: 2;
740745
line-height: 1.6;
746+
min-width: 0;
741747
}
742748

743749
.behavior-table-wrap {

0 commit comments

Comments
 (0)