I'm currently working with a <div>
container styled as flex using the following CSS properties:
.icon-container {
padding: 3px;
padding-top: 15px;
padding-bottom: 15px;
display: flex;
flex-direction: column;
align-content: center;
align-items: center;
border-radius: 25px;
border: solid 2px white;
width: 50px;
background-color: #FFFFFF44;
}
The structure of the HTML is as follows:
<div class="icon-container">
<img alt="icon 1" src="/images/icon1.png"><br>
<img alt="icon 2" src="/images/icon2.png"><br>
<img alt="icon 3" src="/images/icon3.png"><br>
<img alt="icon 4" src="/images/icon4.png"><br>
<img alt="icon 5" src="/images/icon5.png">
</div>
When viewed in dev tools, it appears like this:
https://i.sstatic.net/3Wtoo.png
I've been attempting to decrease the purple gaps by approximately half, but so far my changes have not had any effect.