43 lines
814 B
SCSS
43 lines
814 B
SCSS
@import '../../_variables.scss';
|
|
|
|
.Report {
|
|
.report-content {
|
|
margin: 0.5em 0 1em;
|
|
}
|
|
|
|
.report-state {
|
|
margin: 0.5em 0 1em;
|
|
}
|
|
|
|
.reported-status {
|
|
border: 1px solid $fallback--faint;
|
|
border-color: var(--faint, $fallback--faint);
|
|
border-radius: $fallback--inputRadius;
|
|
border-radius: var(--inputRadius, $fallback--inputRadius);
|
|
color: $fallback--text;
|
|
color: var(--text, $fallback--text);
|
|
display: block;
|
|
padding: 0.5em;
|
|
margin: 0.5em 0;
|
|
|
|
.status-content {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.reported-status-heading {
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
margin-bottom: 0.2em;
|
|
}
|
|
|
|
.reported-status-name {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.note {
|
|
width: 100%;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
}
|