您好,
对于我们现有的社区,我们正在对登陆页面进行一些更新,并希望实现类似 community-openstreetmap 的效果。
到目前为止,我们通过遵循 Making custom CSS changes on your site 更改了分类徽标的大小。但在处理 category-description 时遇到了困难。
.category-logo.aspect-image {
--max-height: 70px !important;
width: auto !important;
max-width: none !important;
height: auto !important;
display: block !important;
margin-bottom: 0.5em;
}
.category-logo.aspect-image img {
display: block;
width: calc(var(--max-height) * var(--aspect-ratio)) !important;
max-width: none !important;
height: auto !important;
max-height: var(--max-height) !important;
}
.category-description {
margin-top: 0.5em;
overflow: hidden;
color: var(--primary-high);
}

