Previews

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Medium
render(Primer::Alpha::Layout.new) do |component|
component.with_main(width: :md, bg: :attention, p: 6) { "Main content" }
component.with_sidebar(bg: :accent, p: 6) { "Sidebar content" }
end
# Large
render(Primer::Alpha::Layout.new) do |component|
component.with_main(width: :lg, bg: :attention, p: 6) { "Main content" }
component.with_sidebar(bg: :accent, p: 6) { "Sidebar content" }
end
# Extra large
render(Primer::Alpha::Layout.new) do |component|
component.with_main(width: :xl, bg: :attention, p: 6) { "Main content" }
component.with_sidebar(bg: :accent, p: 6) { "Sidebar content" }
end
# Full
render(Primer::Alpha::Layout.new) do |component|
component.with_main(width: :full, bg: :attention, p: 6) { "Main content" }
component.with_sidebar(bg: :accent, p: 6) { "Sidebar content" }
end