From 44783bd8ae14626221f08b0c9db047b6f8be22ef Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Wed, 22 Feb 2023 19:23:21 +0100 Subject: [PATCH] Created the AverageChart styles.sass --- .../charts/AverageChart/styles.sass | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 client/src/pages/Statistics/charts/AverageChart/styles.sass diff --git a/client/src/pages/Statistics/charts/AverageChart/styles.sass b/client/src/pages/Statistics/charts/AverageChart/styles.sass new file mode 100644 index 00000000..b6e2bf98 --- /dev/null +++ b/client/src/pages/Statistics/charts/AverageChart/styles.sass @@ -0,0 +1,26 @@ +@import "@/common/styles/colors" + +.value-container + display: flex + flex-direction: column + gap: 2rem + justify-content: center + width: 100% + +.value-item + display: flex + justify-content: space-between + +.value-item svg + width: 2.5rem + height: 2.5rem + color: $green + +.value-item .value-info h2 + font-size: 16pt + color: $white + margin: 0 + +.value-item .value-info p + color: $green + margin: 0 \ No newline at end of file