feat: use route management system for collections

This commit is contained in:
Sonny
2024-05-16 17:59:05 +02:00
committed by Sonny
parent 19b96650e9
commit 905f0ba1c7
4 changed files with 49 additions and 35 deletions

View File

@@ -13,12 +13,13 @@ const CollectionNameWrapper = styled.div({
alignItems: 'center',
});
const CollectionName = styled.div({
const CollectionName = styled.div(({ theme }) => ({
minWidth: 0,
color: theme.colors.primary,
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
overflow: 'hidden',
});
}));
const LinksCount = styled.div(({ theme }) => ({
minWidth: 'fit-content',