aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/panels/StatsPane.scss
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/panels/StatsPane.scss')
-rw-r--r--frontend/src/components/panels/StatsPane.scss21
1 files changed, 21 insertions, 0 deletions
diff --git a/frontend/src/components/panels/StatsPane.scss b/frontend/src/components/panels/StatsPane.scss
new file mode 100644
index 0000000..24a0a33
--- /dev/null
+++ b/frontend/src/components/panels/StatsPane.scss
@@ -0,0 +1,21 @@
+@import "../../colors.scss";
+
+.stats-pane {
+ display: flex;
+ flex-direction: column;
+
+ .stats-list {
+ position: relative;
+ flex: 1;
+ height: 50%;
+
+ .section-content {
+ overflow-y: scroll;
+ height: calc(100% - 10px);
+ }
+
+ .section-table {
+ margin-bottom: 10px;
+ }
+ }
+}