Skip to content

Commit 5c4e4cb

Browse files
committed
Make images and videos larger in 0.18 draft
1 parent 0c0b38a commit 5c4e4cb

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/pages/blog/the-perfect-bug-report.elm

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ main =
1414
[ Center.markdown "600px" intro
1515
, debuggerDemo
1616
, Center.markdown "600px" content
17-
, image "/assets/blog/0.18/error.png"
17+
, badHistory
1818
, Center.markdown "600px" afterError
1919
]
2020

@@ -25,22 +25,23 @@ main =
2525

2626
debuggerDemo : Html msg
2727
debuggerDemo =
28-
div [ Center.style "600px" ]
28+
div [ Center.style "800px" ]
2929
[ div [ class "intrinsic-container" ]
3030
[ iframe
31-
[ src "https://www.youtube.com/embed/oNogm31F2mo?rel=0&autoplay=0"
31+
[ src "https://www.youtube.com/embed/oNogm31F2mo?rel=0&autoplay=0&showinfo=0&color=white&modestbranding=1"
3232
, attribute "allowfullscreen" ""
3333
]
3434
[]
3535
]
3636
]
3737

3838

39-
image url =
40-
div [class "content", Center.style "600px"] [
39+
badHistory : Html msg
40+
badHistory =
41+
div [class "content", Center.style "830px"] [
4142
img
42-
[ src url
43-
, style [("display", "block"), ("margin", "1em auto")]
43+
[ src "/assets/blog/0.18/error.png"
44+
, style [("display", "block"), ("margin", "0 auto")]
4445
, alt "attempting to load incompatible history"
4546
]
4647
[]

0 commit comments

Comments
 (0)