Skip to content

Commit 432cbed

Browse files
walesch-yanjbflo
authored andcommitted
update img-responsive to img-fluid
1 parent f7a156f commit 432cbed

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ui/src/components/ImageViewer/ImageViewer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ export default function ImageViewer(props) {
127127
<div>
128128
<div className={styles.gallery_card}>
129129
<GalleryImage
130-
className={`${styles.gallery_thumbnail} img-responsive`}
130+
className={`${styles.gallery_thumbnail} img-fluid`}
131131
src={props.imgUrl}
132132
alt={props.imgAlt}
133133
/>

ui/src/containers/SampleListViewContainer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ export default function SampleListViewContainer() {
746746
>
747747
<img
748748
src={loader}
749-
className="img-centerd img-responsive"
749+
className="img-centerd img-fluid"
750750
width="150"
751751
alt=""
752752
/>

ui/src/containers/SampleQueueContainer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class SampleQueueContainer extends React.Component {
9494
</Nav>
9595
{loading ? (
9696
<div className={styles.centerInBox} style={{ zIndex: '1000' }}>
97-
<img src={loader} className="img-responsive" width="100" alt="" />
97+
<img src={loader} className="img-fluid" width="100" alt="" />
9898
</div>
9999
) : null}
100100
<CurrentTree

0 commit comments

Comments
 (0)