feat: add django-components people. (#1412)
Some checks are pending
Docs - build & deploy / docs (push) Waiting to run
Run tests / build (windows-latest, 3.10) (push) Waiting to run
Run tests / build (windows-latest, 3.11) (push) Waiting to run
Run tests / build (windows-latest, 3.12) (push) Waiting to run
Run tests / build (windows-latest, 3.13) (push) Waiting to run
Run tests / build (windows-latest, 3.8) (push) Waiting to run
Run tests / build (windows-latest, 3.9) (push) Waiting to run
Run tests / test_docs (3.13) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.8) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.9) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.10) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.11) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.12) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.13) (push) Waiting to run
Run tests / test_sampleproject (3.13) (push) Waiting to run

Co-authored-by: Juro Oravec <juraj.oravec.josefson@gmail.com>
This commit is contained in:
SiHyunLee 2025-10-04 16:59:36 +09:00 committed by GitHub
parent 4b674fda69
commit bfb3f8dee2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 564 additions and 8 deletions

View file

@ -27,3 +27,37 @@ h6 {
.md-nav__item--section {
margin-top: 32px;
}
/* People */
.user-list {
display: flex;
justify-content: center;
padding-top: 2em;
gap: 2.5em;
flex-wrap: wrap;
list-style-type: none;
text-align: center;
}
.user a {
display: flex;
flex-direction: column;
align-items: center;
font-size: 18px;
}
.user .avatar-wrapper {
width: 8em;
height: 8em;
border-radius: 50%;
overflow: hidden;
}
.title {
margin: 8px 0 4px 0;
}
.info {
font-size: 16px;
}