(
-
+
-
+
-
+
diff --git a/apps/dashboard/styles/index.module.css b/apps/dashboard/styles/index.module.css
deleted file mode 100644
index f1a7d8f..0000000
--- a/apps/dashboard/styles/index.module.css
+++ /dev/null
@@ -1,9 +0,0 @@
-.chartBg {
- background: light-dark(white, var(--mantine-color-dark-7));
-}
-
-.statusLabel {
- font-size: var(--mantine-h3-font-size);
- font-weight: var(--mantine-h1-font-weight);
- transform: translateY(-1em);
-}
diff --git a/apps/dashboard/styles/process.module.css b/apps/dashboard/styles/process.module.css
deleted file mode 100644
index 5965048..0000000
--- a/apps/dashboard/styles/process.module.css
+++ /dev/null
@@ -1,51 +0,0 @@
-.processItem {
- background: light-dark(white, var(--mantine-color-dark-7));
- transition: 0.5s ease-out max-height;
-}
-
-.processItem.opened {
- max-height: 400px;
- @media (max-width: $mantine-breakpoint-xs) {
- max-height: 440px;
- }
-}
-
-.processItem.closed {
- max-height: 55px;
-
- @media (max-width: $mantine-breakpoint-sm) {
- max-height: 90px;
- }
-
- @media (max-width: $mantine-breakpoint-xs) {
- max-height: 120px;
- }
-}
-
-.processLog {
- background: light-dark(var(--mantine-color-gray-1), var(--mantine-color-dark-8));
-}
-
-.processMetric {
- background: light-dark(var(--mantine-color-gray-1), var(--mantine-color-dark-8));
-}
-
-.colorSchemeDark {
- @mixin dark {
- display: none;
- }
-
- @mixin light {
- display: block;
- }
-}
-
-.colorSchemeLight {
- @mixin light {
- display: none;
- }
-
- @mixin dark {
- display: block;
- }
-}
diff --git a/apps/dashboard/styles/user.module.css b/apps/dashboard/styles/user.module.css
deleted file mode 100644
index 218fe30..0000000
--- a/apps/dashboard/styles/user.module.css
+++ /dev/null
@@ -1,21 +0,0 @@
-.value {
- margin-left: rem(1);
- margin-right: rem(1);
-}
-
-.values {
- max-width: rem(20-0);
- flex-wrap: nowrap;
- overflow-x: auto;
- scrollbar-width: thin;
- overflow-y: hidden;
-}
-
-.content {
- padding: 0;
- padding-left: rem(60);
-
- @media (max-width: $mantine-breakpoint-xs) {
- padding-left: rem(10);
- }
-}