Skip to content

Commit

Permalink
fixed truncation (#1925)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewbirtch authored Jul 31, 2024
1 parent 5f3ca04 commit 45c8a97
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions webapp/src/components/sidebar/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const SidebarComponent = styled.div`
const Header = styled.div`
height: 52px;
padding: 0 16px;
gap: 8px;
display: flex;
flex: initial;
flex-flow: row nowrap;
Expand All @@ -115,14 +115,17 @@ const Header = styled.div`
`;

const TeamName = styled.h1`
display: inline-block;
margin: 0px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
color: var(--sidebar-header-text-color);
cursor: pointer;
display: flex;
font-family: Metropolis, sans-serif;
font-weight: 600;
font-size: 16px;
line-height: 24px;
margin: 0px;
cursor: pointer;
`;

export default Sidebar;

0 comments on commit 45c8a97

Please sign in to comment.