Removed explicit width attributes from flag <img> tags in gallery.md and added a CSS rule to set image width to 96px. This centralizes image sizing in CSS for easier maintenance and cleaner markup.
16 lines
214 B
CSS
16 lines
214 B
CSS
.container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
.container > div {
|
|
text-align: center;
|
|
padding: 1em;
|
|
width: 160px;
|
|
}
|
|
.container > div img {
|
|
width: 96px;
|
|
height: auto;
|
|
}
|
|
code {
|
|
white-space: nowrap;
|
|
}
|