Previews

No matching results.

x
1
2
3
4
<div data-view-component="true" class="d-flex flex-column">
<div data-view-component="true" class="color-bg-attention p-6">Block 1</div>
<div data-view-component="true" class="color-bg-accent p-6">Block 2</div>
</div>
1
2
3
4
5
6
7
8
render(Primer::OpenProject::FlexLayout.new) do |component|
component.with_row(bg: :attention, p: 6) do
"Block 1"
end
component.with_row(bg: :accent, p: 6) do
"Block 2"
end
end