discourse/app/assets/stylesheets/common/base/about.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
573 B
SCSS
Raw Normal View History

2014-08-12 04:59:00 +08:00
section.about {
margin-bottom: 3em;
2014-08-12 04:59:00 +08:00
.users {
display: grid;
gap: 1em;
grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
}
2014-08-12 04:59:00 +08:00
h3 {
margin-bottom: 1em;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0 0.35em;
.d-icon {
color: var(--primary-high);
2014-08-12 04:59:00 +08:00
}
.badge-category__wrapper {
font-size: var(--font-0);
align-self: baseline;
}
}
2014-08-12 04:59:00 +08:00
&.stats {
table {
td {
padding: 0.67em;
&:not(:first-child) {
text-align: center;
}
}
2014-08-12 04:59:00 +08:00
}
}
}