diff --git a/packages/twenty-front/src/modules/views/components/UpdateViewButtonGroup.tsx b/packages/twenty-front/src/modules/views/components/UpdateViewButtonGroup.tsx
index 6d914d3cf..6091251b5 100644
--- a/packages/twenty-front/src/modules/views/components/UpdateViewButtonGroup.tsx
+++ b/packages/twenty-front/src/modules/views/components/UpdateViewButtonGroup.tsx
@@ -16,6 +16,8 @@ import { useViewBar } from '@/views/hooks/useViewBar';
import { useViewScopedStates } from '../hooks/internal/useViewScopedStates';
const StyledContainer = styled.div`
+ background: ${({ theme }) => theme.color.blue};
+ border-radius: ${({ theme }) => theme.border.radius.md};
display: inline-flex;
margin-right: ${({ theme }) => theme.spacing(2)};
position: relative;
@@ -53,29 +55,29 @@ export const UpdateViewButtonGroup = ({
}
return (
-
-
-
-
-
-
-
- }
- dropdownComponents={
- <>
-
-
-
- >
- }
- />
-
+
+
+
+
+
+ }
+ dropdownComponents={
+ <>
+
+
+
+ >
+ }
+ />
+
+
+
);
};