circle-flags/gallery.css
HatScripts 1d871b7866 Move flag image sizing from HTML to CSS
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.
2025-12-08 19:09:31 +11:00

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;
}