From 4a0378c6c4f6f5224d3df069bb88b75ec5573bed Mon Sep 17 00:00:00 2001 From: benduran Date: Mon, 27 Oct 2025 15:18:17 +0000 Subject: [PATCH 1/2] chore(component-library): fixed formatting via prettier --- packages/component-library/src/EntityList/index.module.scss | 4 +++- .../component-library/src/SymbolPairTag/index.module.scss | 5 +++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/packages/component-library/src/EntityList/index.module.scss b/packages/component-library/src/EntityList/index.module.scss index c2c687e760..ce8e384750 100644 --- a/packages/component-library/src/EntityList/index.module.scss +++ b/packages/component-library/src/EntityList/index.module.scss @@ -55,7 +55,9 @@ align-items: center; display: flex; flex-flow: row nowrap; - gap: theme.spacing(2); // give items a little breathing room if text is long + gap: theme.spacing( + 2 + ); // give items a little breathing room if text is long justify-content: space-between; } diff --git a/packages/component-library/src/SymbolPairTag/index.module.scss b/packages/component-library/src/SymbolPairTag/index.module.scss index 42d44e8cf4..44da313664 100644 --- a/packages/component-library/src/SymbolPairTag/index.module.scss +++ b/packages/component-library/src/SymbolPairTag/index.module.scss @@ -50,15 +50,16 @@ .description { color: theme.color("muted"); + // this helps prevent long feed descriptions from looking gross // and overflowing off the page, pushing the curren values off the page, // too overflow: initial; text-overflow: initial; white-space: normal; - + @include theme.text("xs", "medium"); - + // reset the above on large devices, to match when the price feeds grid switches over @include theme.breakpoint("2xl") { overflow: hidden; From f54ffad173f9c1e126c3a4da040cb7fe14373b61 Mon Sep 17 00:00:00 2001 From: benduran Date: Mon, 27 Oct 2025 15:24:23 +0000 Subject: [PATCH 2/2] chore: style lint pass --- packages/component-library/src/EntityList/index.module.scss | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/component-library/src/EntityList/index.module.scss b/packages/component-library/src/EntityList/index.module.scss index ce8e384750..d60e76ca98 100644 --- a/packages/component-library/src/EntityList/index.module.scss +++ b/packages/component-library/src/EntityList/index.module.scss @@ -55,9 +55,7 @@ align-items: center; display: flex; flex-flow: row nowrap; - gap: theme.spacing( - 2 - ); // give items a little breathing room if text is long + gap: theme.spacing(2); justify-content: space-between; }