How to indent the second row in the grid to the left?

There are two problems with the typ code:

First problem: The text in second row is not correctly indented.
Second Problem: Unnecessary spaces is in the text in yellow sticker

#import "@preview/colorful-boxes:1.1.0": stickybox

#set par(justify: true)

#grid(
  columns: (auto, auto),
  rows: (auto, auto),
  column-gutter: 0.20in,
    [#lorem(80)],
    stickybox(width: 2.7cm, rotation: 0deg)[#lorem(10)],
    grid.cell(
      colspan: 2,
      inset: 6pt,
// This row is not correctly indented.      
 [ Dummy text Dummy text Dummy text Dummy text Dummy text Dummy, Dummy text Dummy text Dummy text Dummy text Dummy text Dummy 
Dummy text Dummy text Dummy text Dummy text Dummy text Dummy Dummy text Dummy text Dummy text Dummy text Dummy text Dummy 
Dummy text Dummy text Dummy text Dummy text Dummy text Dummy ]))

#lorem(69)

First problem: If you set the inset of the cell to 0pt, the indent will be gone. Is that the “correct” indent you are looking for?

Second problem: Are you talking about the spaces due to the justification? You can turn this off again with another show rule inside the yellow stick.

1 Like

Thank you for your feedback.