We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5611d7 commit cc700f0Copy full SHA for cc700f0
src/core/components/response-body.jsx
@@ -129,7 +129,7 @@ export default class ResponseBody extends React.PureComponent {
129
if(contentType.includes("svg")) {
130
bodyEl = <div> { content } </div>
131
} else {
132
- bodyEl = <img className="full-width" src={ window.URL.createObjectURL(content) } />
+ bodyEl = <img src={ window.URL.createObjectURL(content) } />
133
}
134
135
// Audio
src/style/_layout.scss
@@ -867,11 +867,6 @@
867
float: right;
868
869
870
-img.full-width
871
-{
872
- width: 100%;
873
-}
874
-
875
.svg-assets
876
{
877
position: absolute;
0 commit comments