We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 942eb75 commit 1e5c4c9Copy full SHA for 1e5c4c9
src/me/components/PinnedItems.scss
@@ -23,6 +23,11 @@ $dashboard-grid-gap: $cf-space-2xs;
23
background: $cf-grey-25;
24
}
25
26
+.pinneditems--link {
27
+ word-break: break-word;
28
+ max-width: fit-content;
29
+}
30
+
31
@media screen and (max-width: $cf-grid--breakpoint-md) {
32
.pinneditems--container {
33
grid-template-columns: minmax(0px, 1fr);
src/me/components/PinnedItems.tsx
@@ -112,6 +112,7 @@ const PinnedItems: FC = () => {
112
name={item.metadata.name ?? ''}
113
onClick={() => followMetadataToRoute(item)}
114
testID="pinneditems--link"
115
+ className="pinneditems--link"
116
/>
117
</ResourceCard>
118
))
0 commit comments