I am trying to create two columns where one of them takes x% of the page (and the other column fills the rest) using grid:
#grid(
columns: (30%,70%), align: center,
[Content A],
[Content B]
)
What I also tried was:
#grid(
columns: (1fr,3fr), align: center,
[Content A],
[Content B]
)