add profile images for users
Note: users can configure different images on each relay, added userList with a metadata to keep a map of of different settings of each releay.pull/1/head
parent
8d60bf871c
commit
7a705cd4ab
@ -1,20 +1,29 @@
|
||||
/* https://developer.mozilla.org/en-US/docs/Web/CSS/Layout_cookbook/Media_objects */
|
||||
.mbox {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.mbox .mbox-img {
|
||||
width: 64px;
|
||||
flex-basis: 64px;
|
||||
height: 64px;
|
||||
margin-right: 1rem;
|
||||
width: 64px;
|
||||
}
|
||||
|
||||
.mbox .mbox-body {
|
||||
flex: 1;
|
||||
color: var(--fgcolor-accent);
|
||||
.mbox .mbox-header {
|
||||
flex-basis: calc(100% - 64px - 1rem);
|
||||
flex-grow: 0;
|
||||
flex-shrink: 1;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.mbox-body > .header {
|
||||
margin-top: 0;
|
||||
.mbox .mbox-body {
|
||||
color: var(--fgcolor-accent);
|
||||
flex-basis: calc(100% - 64px - 1rem);
|
||||
flex-grow: 0;
|
||||
flex-shrink: 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue