diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-04-14T16·12+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-04-14T16·12+0200 |
commit | 529da884da2a208ad91aebf052522517a704c742 (patch) | |
tree | db2ff50f64e4328c85fab24aa274c975baf9ebf8 | |
parent | 324778c7e008128b8e9e1ea1699cd5250a81c73d (diff) |
fix(templates): Fluidly scale all images
-rw-r--r-- | templates/thread.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/thread.html b/templates/thread.html index 6222b9926d6e..7a2d6ee2ef4b 100644 --- a/templates/thread.html +++ b/templates/thread.html @@ -6,6 +6,8 @@ <meta http-equiv="Content-Security-Policy" content="script-src 'self';"> <!-- Bootstrap CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> + <!-- Custom CSS additions --> + <style>img { max-width:100%; height:auto; }</style> <title>Converse: {{ title }}</title> </head> <body> |