mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 05:07:20 +08:00
31 lines
463 B
SCSS
31 lines
463 B
SCSS
section.about {
|
|
margin-bottom: 3em;
|
|
|
|
.users {
|
|
display: grid;
|
|
gap: 1em;
|
|
grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
|
|
}
|
|
|
|
h3 {
|
|
margin-bottom: 1em;
|
|
display: flex;
|
|
align-items: center;
|
|
.d-icon {
|
|
margin-right: 0.5em;
|
|
color: var(--primary-high);
|
|
}
|
|
}
|
|
|
|
&.stats {
|
|
table {
|
|
td {
|
|
padding: 0.67em;
|
|
&:not(:first-child) {
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|