26 lines
583 B
CSS
26 lines
583 B
CSS
.badges {
|
|
margin-top: var(--global-spacing);
|
|
background: var(--container-colour);
|
|
border: 1px solid var(--container-border);
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
|
|
gap: var(--global-spacing-0-5x);
|
|
padding: var(--global-spacing);
|
|
}
|
|
|
|
.badges-item {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.badges-item img {
|
|
display: block;
|
|
image-rendering: crisp-edges;
|
|
width: 88px;
|
|
height: 31px;
|
|
flex-shrink: 0;
|
|
flex-grow: 0;
|
|
}
|