aboutsummaryrefslogtreecommitdiff
path: root/packages/memory-graph/src/components/loading-indicator.css.ts
diff options
context:
space:
mode:
authornexxeln <[email protected]>2025-12-02 18:37:24 +0000
committernexxeln <[email protected]>2025-12-02 18:37:24 +0000
commitdfb0c05ab33cb20537002eaeb896e6b2ab35af25 (patch)
tree49ecaa46903671d96f2f9ebc5af688ab2ea2c7bd /packages/memory-graph/src/components/loading-indicator.css.ts
parentFix: Update discord links in README.md and CONTRIBUTING.md (#598) (diff)
downloadsupermemory-dfb0c05ab33cb20537002eaeb896e6b2ab35af25.tar.xz
supermemory-dfb0c05ab33cb20537002eaeb896e6b2ab35af25.zip
add spaces selector with search (#600)update-memory-graph
relevant files to review: \- memory-graph.tsx \- spaces-dropdown.tsx \- spaces-dropdown.css.ts
Diffstat (limited to 'packages/memory-graph/src/components/loading-indicator.css.ts')
-rw-r--r--packages/memory-graph/src/components/loading-indicator.css.ts16
1 files changed, 8 insertions, 8 deletions
diff --git a/packages/memory-graph/src/components/loading-indicator.css.ts b/packages/memory-graph/src/components/loading-indicator.css.ts
index 09010f28..4aac7cfd 100644
--- a/packages/memory-graph/src/components/loading-indicator.css.ts
+++ b/packages/memory-graph/src/components/loading-indicator.css.ts
@@ -1,6 +1,6 @@
-import { style } from "@vanilla-extract/css";
-import { themeContract } from "../styles/theme.css";
-import { animations } from "../styles";
+import { style } from "@vanilla-extract/css"
+import { themeContract } from "../styles/theme.css"
+import { animations } from "../styles"
/**
* Loading indicator container
@@ -13,7 +13,7 @@ export const loadingContainer = style({
overflow: "hidden",
top: "5.5rem", // Below spaces dropdown (~88px)
left: themeContract.space[4],
-});
+})
/**
* Content wrapper
@@ -26,7 +26,7 @@ export const loadingContent = style({
paddingRight: themeContract.space[4],
paddingTop: themeContract.space[3],
paddingBottom: themeContract.space[3],
-});
+})
/**
* Flex container for icon and text
@@ -35,7 +35,7 @@ export const loadingFlex = style({
display: "flex",
alignItems: "center",
gap: themeContract.space[2],
-});
+})
/**
* Spinning icon
@@ -45,11 +45,11 @@ export const loadingIcon = style({
height: "1rem",
animation: `${animations.spin} 1s linear infinite`,
color: themeContract.colors.memory.border,
-});
+})
/**
* Loading text
*/
export const loadingText = style({
fontSize: themeContract.typography.fontSize.sm,
-});
+})