We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55527a4 commit c80639bCopy full SHA for c80639b
1 file changed
src/app/globals.css
@@ -710,8 +710,9 @@ h1 {
710
border-radius: 8px;
711
counter-increment: review-step;
712
display: grid;
713
- gap: 4px;
714
- grid-template-columns: 34px 1fr;
+ column-gap: 10px;
+ grid-template-columns: 34px minmax(0, 1fr);
715
+ row-gap: 4px;
716
padding: 12px;
717
}
718
@@ -725,19 +726,24 @@ h1 {
725
726
font-family: var(--mono);
727
font-size: 12px;
728
font-weight: 800;
729
+ grid-row: 1 / span 2;
730
height: 26px;
731
justify-items: center;
732
width: 26px;
733
734
735
.review-flow strong {
736
font-size: 14px;
737
+ grid-column: 2;
738
+ line-height: 1.45;
739
740
741
.review-flow span {
742
color: var(--text-soft);
743
font-size: 13px;
744
745
line-height: 1.6;
746
+ min-width: 0;
747
748
749
.behavior-table-wrap {
0 commit comments