Here is the element I am attempting to modify. I attempted
&:active {
flex:7;}
but upon releasing the left click button, it reverted back to its original size.
I was aiming for something similar to this
<h1>Gallery</h1>
<div class="gallery-wrap">
<div class="item item-1"></div>
<div class="item item-2"></div>
<div class="item item-3"></div>
<div class="item item-4"></div>
<div class="item item-5"></div>
</div>
However, achieving this would involve using javascript which I am not proficient in.