Merge pull request #1331 from palashgdev/sidebar-text

chore: css for light mode is updated in sidebar
This commit is contained in:
Palash 2022-06-29 22:52:39 +05:30 committed by GitHub
commit 897728cc71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 8 deletions

View File

@ -15,7 +15,6 @@ import AppReducer from 'types/reducer/app';
import menus from './menuItems';
import Slack from './Slack';
import {
Name,
RedDot,
Sider,
SlackButton,
@ -105,7 +104,7 @@ function SideNav(): JSX.Element {
onClick={(): void => onClickHandler(to)}
>
<Space>
<Name ellipsis>{name}</Name>
<div>{name}</div>
{tags &&
tags.map((e) => (
<Tags style={{ lineHeight: '1rem' }} color="#177DDC" key={e}>

View File

@ -83,9 +83,3 @@ export const Tags = styled(Tag)`
border-radius: 0.5rem;
}
`;
export const Name = styled(Typography.Paragraph)`
&&& {
margin: 0;
}
`;