feat: set widt to 100%

This commit is contained in:
Rohit
2025-03-14 23:48:27 +05:30
parent 5c6d707de2
commit fa9a2c2cff
2 changed files with 3 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ const StyledNavBar = styled.div<{ browserWidth: number; isDarkMode: boolean }>`
display: flex;
padding: 12px 0px;
background-color: ${({ isDarkMode }) => (isDarkMode ? '#2C2F33' : '#f6f6f6')};
width: ${({ browserWidth }) => browserWidth}px;
width: 100%;
border-radius: 0px 5px 0px 0px;
`;

View File

@@ -32,7 +32,8 @@ export const BrowserTabs = (
return (
<Box sx={{
width: 800, // Fixed width
width: '100%',
maxWidth: '100%',
display: 'flex',
overflow: 'auto',
alignItems: 'center',