Fix safari broken table (#11399)

Fixes #11254
This commit is contained in:
Charles Bochet
2025-04-04 19:16:33 +02:00
committed by GitHub
parent 241d8820d7
commit 8fa09e21ec
4 changed files with 7 additions and 23 deletions

View File

@ -7,8 +7,8 @@ import { useRecoilComponentStateV2 } from '@/ui/utilities/state/component-state/
import styled from '@emotion/styled';
import * as React from 'react';
import { useEffect } from 'react';
import { Tab } from './Tab';
import { IconComponent } from 'twenty-ui/display';
import { Tab } from './Tab';
export type SingleTabProps<T extends string = string> = {
title: string;
@ -37,6 +37,7 @@ const StyledContainer = styled.div`
gap: ${({ theme }) => theme.spacing(1)};
height: 40px;
user-select: none;
width: 100%;
`;
const StyledOuterContainer = styled.div`