@syscore/ui-library 1.11.0 → 1.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/global.css +1 -1
- package/client/ui/Panel.stories.tsx +8 -4
- package/package.json +1 -1
package/client/global.css
CHANGED
|
@@ -60,8 +60,10 @@ const ExploreSidePanelView = (args: any) => {
|
|
|
60
60
|
className="absolute top-1/2 -translate-y-1/2 left-0 right-0 body-small"
|
|
61
61
|
style={{ willChange: "opacity, transform" }}
|
|
62
62
|
>
|
|
63
|
-
<span className="line-clamp-1">
|
|
64
|
-
|
|
63
|
+
<span className="line-clamp-1 text-gray-800">
|
|
64
|
+
<span aria-hidden="true" className="text-gray-300">
|
|
65
|
+
·{" "}
|
|
66
|
+
</span>
|
|
65
67
|
{capitalize(
|
|
66
68
|
concepts.find((c) => c.conceptKey === hoveredConcept)
|
|
67
69
|
?.name ?? "",
|
|
@@ -145,8 +147,10 @@ const ExploreSidePanelView = (args: any) => {
|
|
|
145
147
|
className="absolute top-1/2 -translate-y-1/2 left-0 right-0 body-small"
|
|
146
148
|
style={{ willChange: "opacity, transform" }}
|
|
147
149
|
>
|
|
148
|
-
<span className="
|
|
149
|
-
|
|
150
|
+
<span className="block w-[235px] truncate pr-6 text-gray-800">
|
|
151
|
+
<span aria-hidden="true" className="text-gray-300">
|
|
152
|
+
·{" "}
|
|
153
|
+
</span>
|
|
150
154
|
{capitalize(
|
|
151
155
|
themes.find((t) => t.code === hoveredTheme)?.name ??
|
|
152
156
|
"",
|