diff --git a/frontend/src/container/ConfigDropdown/index.tsx b/frontend/src/container/ConfigDropdown/index.tsx
index 65993fc62903..12992bf1a63b 100644
--- a/frontend/src/container/ConfigDropdown/index.tsx
+++ b/frontend/src/container/ConfigDropdown/index.tsx
@@ -52,7 +52,7 @@ function DynamicConfigDropdown({
>
diff --git a/frontend/src/container/Header/index.tsx b/frontend/src/container/Header/index.tsx
index 4f8bbca04840..5deaa07bd217 100644
--- a/frontend/src/container/Header/index.tsx
+++ b/frontend/src/container/Header/index.tsx
@@ -29,7 +29,12 @@ import AppReducer from 'types/reducer/app';
import CurrentOrganization from './CurrentOrganization';
import ManageLicense from './ManageLicense';
import SignedInAS from './SignedInAs';
-import { Container, LogoutContainer, ToggleButton } from './styles';
+import {
+ Container,
+ IconContainer,
+ LogoutContainer,
+ ToggleButton,
+} from './styles';
function HeaderContainer({ toggleDarkMode }: Props): JSX.Element {
const { isDarkMode, user, currentVersion } = useSelector(
@@ -98,10 +103,12 @@ function HeaderContainer({ toggleDarkMode }: Props): JSX.Element {
-
-
- SigNoz
-
+
+
+
+ SigNoz
+
+
@@ -123,7 +130,9 @@ function HeaderContainer({ toggleDarkMode }: Props): JSX.Element {
>
{user?.name[0]}
- {!isUserDropDownOpen ? : }
+
+ {!isUserDropDownOpen ? : }
+
diff --git a/frontend/src/container/Header/styles.ts b/frontend/src/container/Header/styles.ts
index 602634f35648..01b90559cc86 100644
--- a/frontend/src/container/Header/styles.ts
+++ b/frontend/src/container/Header/styles.ts
@@ -4,6 +4,7 @@ import styled from 'styled-components';
export const Container = styled.div`
display: flex;
justify-content: space-between;
+ height: 100%;
`;
export const AvatarContainer = styled.div`
@@ -61,3 +62,7 @@ export const ToggleButton = styled(Switch)`
font-size: 1rem !important;
}
`;
+
+export const IconContainer = styled.div`
+ color: white;
+`;