32 lines
462 B
SCSS
32 lines
462 B
SCSS
.unapproved-account {
|
|
padding: 15px 20px;
|
|
font-size: 14px;
|
|
display: flex;
|
|
|
|
&__nickname {
|
|
font-weight: bold;
|
|
}
|
|
|
|
&__actions {
|
|
margin-left: auto;
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
column-gap: 10px;
|
|
padding-left: 20px;
|
|
|
|
.svg-icon {
|
|
height: 24px;
|
|
width: 24px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.logentry {
|
|
padding: 15px;
|
|
|
|
&__timestamp {
|
|
color: var(--primary-text-color--faint);
|
|
font-size: 13px;
|
|
text-align: right;
|
|
}
|
|
}
|