Currently experimenting with the example code to expand my knowledge of Semantic UI. The Feed view caught my eye, but I am interested in adding another avatar/mini image at the end of my summary line. While I can successfully insert the additional image, I'm having difficulty resizing it using classes (ui, image, mini) like I normally would. The original image is sized at 200px x 200px
<div class="ui feed">
<div class="event">
<div class="label">
<img src="/images/avatar/small/jenny.jpg">
</div>
<div class="content">
<div class="date">
3 days ago
</div>
<div class="summary">
You added <a>Jenny Hess</a> to your <a>coworker</a> group.
<img src="/images/wireframe/image.png"> <!-- This is the problem image. Its 200x200 and I can't seem to resize it -->
</div>
</div>
</div>
</div>
Running Vue on my project, though unsure if that has any relevance. I attempted an inline style within my component:
.summary img { height: 35px; width: 35px; }
Regrettably, this approach did not yield the desired outcome. Setting the height/width attribute directly on the image tag also proved ineffective.
Could a more specific CSS rule be necessary?