Initial commit
This commit is contained in:
commit
5a3bf52ebb
86 changed files with 2639 additions and 0 deletions
46
web/src/components/role-list.module.css
Normal file
46
web/src/components/role-list.module.css
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
@import '../styles/custom-properties.css';
|
||||
|
||||
.root {
|
||||
margin: 2rem 0 3rem;
|
||||
border-top: 1px solid var(--color-very-light-gray);
|
||||
}
|
||||
|
||||
.headline {
|
||||
composes: base from './typography.module.css';
|
||||
margin: 0.5rem 0 0;
|
||||
}
|
||||
|
||||
.list {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.listItem {
|
||||
font-size: var(--font-small-size);
|
||||
margin: 1rem 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
@nest & > div:last-child {
|
||||
flex: 1;
|
||||
margin-left: 0.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
.avatar {
|
||||
position: relative;
|
||||
width: 3em;
|
||||
height: 3em;
|
||||
background: #eee;
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
|
||||
@nest & img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
vertical-align: top;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue