aboutsummaryrefslogtreecommitdiff
path: root/src/components/report/report.scss
diff options
context:
space:
mode:
authorShpuld Shpuldson <shp@cock.li>2021-01-11 19:32:58 +0200
committerShpuld Shpuldson <shp@cock.li>2021-01-11 19:32:58 +0200
commit8674f2002320aaa6c380488b0eab636a53c76705 (patch)
tree79b260a72600c37024d9c197467dd6001527544b /src/components/report/report.scss
parenta4e3cccf1cba238e5bfd96ea8c60f0d12bc6b7aa (diff)
separated component
Diffstat (limited to 'src/components/report/report.scss')
-rw-r--r--src/components/report/report.scss39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/components/report/report.scss b/src/components/report/report.scss
new file mode 100644
index 00000000..7e9cc2b6
--- /dev/null
+++ b/src/components/report/report.scss
@@ -0,0 +1,39 @@
+@import '../../_variables.scss';
+
+.Report {
+ .report-content {
+ margin: 0.5em 0;
+ }
+
+ .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;
+ }
+}