27 lines
458 B
CSS
27 lines
458 B
CSS
|
.profile__warnings {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
padding: 2px 5px;
|
||
|
}
|
||
|
|
||
|
.profile__warnings__item {
|
||
|
padding-bottom: 5px;
|
||
|
}
|
||
|
.profile__warnings__item:not(:last-child) {
|
||
|
border-bottom: 1px solid #222;
|
||
|
}
|
||
|
|
||
|
.profile__warnings__datetime {
|
||
|
font-size: .9em;
|
||
|
line-height: 1.5em;
|
||
|
font-style: italic;
|
||
|
padding-top: 2px;
|
||
|
}
|
||
|
|
||
|
.profile__warnings__body {
|
||
|
padding: 0 5px;
|
||
|
}
|
||
|
.profile__warnings__body p {
|
||
|
line-height: 1.4em;
|
||
|
}
|